@beenotung/tslib
Version:
utils library in Typescript
11 lines • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.unwrapSupplierOrData = void 0;
function unwrapSupplierOrData(x) {
if (typeof x === 'function') {
return x();
}
return x;
}
exports.unwrapSupplierOrData = unwrapSupplierOrData;
//# sourceMappingURL=dirty-types.js.map