rxdeep
Version:
RxJS deep state management
9 lines • 339 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isStorage = void 0;
function isStorage(whatevs) {
return whatevs && whatevs.load && typeof whatevs.load === 'function'
&& whatevs.save && typeof whatevs.save === 'function';
}
exports.isStorage = isStorage;
//# sourceMappingURL=storage.js.map