type-dexie
Version:
class oriented schema building tool for dexie.js
12 lines • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.hasMetadata = void 0;
var hasMetadata = function (metadataKey, target, propertyKey) {
if (null == target ||
('object' !== typeof target && 'function' !== typeof target)) {
return false;
}
return Reflect.hasMetadata(metadataKey, target, propertyKey);
};
exports.hasMetadata = hasMetadata;
//# sourceMappingURL=has-metadata.js.map