datasquirel/dist/package-shared/utils/check-if-is-master.js
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

10 lines
346 B
JavaScript

export default function checkIfIsMaster({ dbContext, dbFullName }) {
return (dbContext === null || dbContext === void 0 ? void 0 : dbContext.match(/dsql.user/i))
? false
: global.DSQL_USE_LOCAL
? true
: dbFullName && !dbFullName.match(/^datasquirel$/)
? false
: true;
}