12345678910 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var localforage_driver_commons_1 = require("localforage-driver-commons");
- function length(callback) {
- var promise = this.keys().then(function (keys$) { return keys$.length; });
- localforage_driver_commons_1.executeCallback(promise, callback);
- return promise;
- }
- exports.length = length;
- //# sourceMappingURL=length.js.map
|