@ayonli/jsext
Version:
A JavaScript extension package for building strong and modern applications.
26 lines (23 loc) • 711 B
JavaScript
;
var object = require('../object.js');
if (!Object.hasOwn) {
Object.hasOwn = object.hasOwn;
}
if (!Object.hasOwnMethod) {
Object.hasOwnMethod = object.hasOwnMethod;
}
Object.patch = object.patch;
Object.pick = object.pick;
Object.omit = object.omit;
Object.as = object.as;
Object.typeOf = object.typeOf;
Object.isValid = object.isValid;
Object.isPlainObject = object.isPlainObject;
Object.sanitize = object.sanitize;
Object.sortKeys = object.sortKeys;
Object.flatKeys = object.flatKeys;
Object.filterEntries = object.filterEntries;
Object.mapEntries = object.mapEntries;
Object.partitionEntries = object.partitionEntries;
Object.invert = object.invert;
//# sourceMappingURL=object.js.map