@n4it/typeorm-audit
Version:
TypeORM Auditing: Create history tables and manage changes of entities automagically.
8 lines • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFunction = exports.isStringVersionType = void 0;
const isStringVersionType = (value) => ['increment', 'uuid', 'rowid', 'identity'].includes(value);
exports.isStringVersionType = isStringVersionType;
const isFunction = (value) => typeof value === 'function';
exports.isFunction = isFunction;
//# sourceMappingURL=is.js.map