You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
3.9 KiB
144 lines
3.9 KiB
4 years ago
|
/*! lowdb v1.0.0 */
|
||
|
var low =
|
||
|
/******/ (function(modules) { // webpackBootstrap
|
||
|
/******/ // The module cache
|
||
|
/******/ var installedModules = {};
|
||
|
/******/
|
||
|
/******/ // The require function
|
||
|
/******/ function __webpack_require__(moduleId) {
|
||
|
/******/
|
||
|
/******/ // Check if module is in cache
|
||
|
/******/ if(installedModules[moduleId]) {
|
||
|
/******/ return installedModules[moduleId].exports;
|
||
|
/******/ }
|
||
|
/******/ // Create a new module (and put it into the cache)
|
||
|
/******/ var module = installedModules[moduleId] = {
|
||
|
/******/ i: moduleId,
|
||
|
/******/ l: false,
|
||
|
/******/ exports: {}
|
||
|
/******/ };
|
||
|
/******/
|
||
|
/******/ // Execute the module function
|
||
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||
|
/******/
|
||
|
/******/ // Flag the module as loaded
|
||
|
/******/ module.l = true;
|
||
|
/******/
|
||
|
/******/ // Return the exports of the module
|
||
|
/******/ return module.exports;
|
||
|
/******/ }
|
||
|
/******/
|
||
|
/******/
|
||
|
/******/ // expose the modules object (__webpack_modules__)
|
||
|
/******/ __webpack_require__.m = modules;
|
||
|
/******/
|
||
|
/******/ // expose the module cache
|
||
|
/******/ __webpack_require__.c = installedModules;
|
||
|
/******/
|
||
|
/******/ // define getter function for harmony exports
|
||
|
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||
|
/******/ if(!__webpack_require__.o(exports, name)) {
|
||
|
/******/ Object.defineProperty(exports, name, {
|
||
|
/******/ configurable: false,
|
||
|
/******/ enumerable: true,
|
||
|
/******/ get: getter
|
||
|
/******/ });
|
||
|
/******/ }
|
||
|
/******/ };
|
||
|
/******/
|
||
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||
|
/******/ __webpack_require__.n = function(module) {
|
||
|
/******/ var getter = module && module.__esModule ?
|
||
|
/******/ function getDefault() { return module['default']; } :
|
||
|
/******/ function getModuleExports() { return module; };
|
||
|
/******/ __webpack_require__.d(getter, 'a', getter);
|
||
|
/******/ return getter;
|
||
|
/******/ };
|
||
|
/******/
|
||
|
/******/ // Object.prototype.hasOwnProperty.call
|
||
|
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||
|
/******/
|
||
|
/******/ // __webpack_public_path__
|
||
|
/******/ __webpack_require__.p = "";
|
||
|
/******/
|
||
|
/******/ // Load entry module and return exports
|
||
|
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
||
|
/******/ })
|
||
|
/************************************************************************/
|
||
|
/******/ ([
|
||
|
/* 0 */
|
||
|
/***/ (function(module, exports, __webpack_require__) {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
|
||
|
var lodash = __webpack_require__(1);
|
||
|
var isPromise = __webpack_require__(2);
|
||
|
|
||
|
module.exports = function (adapter) {
|
||
|
if (typeof adapter !== 'object') {
|
||
|
throw new Error('An adapter must be provided, see https://github.com/typicode/lowdb/#usage');
|
||
|
}
|
||
|
|
||
|
// Create a fresh copy of lodash
|
||
|
var _ = lodash.runInContext();
|
||
|
var db = _.chain({});
|
||
|
|
||
|
// Add write function to lodash
|
||
|
// Calls save before returning result
|
||
|
_.prototype.write = _.wrap(_.prototype.value, function (func) {
|
||
|
var funcRes = func.apply(this);
|
||
|
return db.write(funcRes);
|
||
|
});
|
||
|
|
||
|
function plant(state) {
|
||
|
db.__wrapped__ = state;
|
||
|
return db;
|
||
|
}
|
||
|
|
||
|
// Lowdb API
|
||
|
// Expose _ for mixins
|
||
|
db._ = _;
|
||
|
|
||
|
db.read = function () {
|
||
|
var r = adapter.read();
|
||
|
return isPromise(r) ? r.then(plant) : plant(r);
|
||
|
};
|
||
|
|
||
|
db.write = function (returnValue) {
|
||
|
var w = adapter.write(db.getState());
|
||
|
return isPromise(w) ? w.then(function () {
|
||
|
return returnValue;
|
||
|
}) : returnValue;
|
||
|
};
|
||
|
|
||
|
db.getState = function () {
|
||
|
return db.__wrapped__;
|
||
|
};
|
||
|
|
||
|
db.setState = function (state) {
|
||
|
return plant(state);
|
||
|
};
|
||
|
|
||
|
return db.read();
|
||
|
};
|
||
|
|
||
|
/***/ }),
|
||
|
/* 1 */
|
||
|
/***/ (function(module, exports) {
|
||
|
|
||
|
module.exports = _;
|
||
|
|
||
|
/***/ }),
|
||
|
/* 2 */
|
||
|
/***/ (function(module, exports) {
|
||
|
|
||
|
module.exports = isPromise;
|
||
|
|
||
|
function isPromise(obj) {
|
||
|
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
|
||
|
}
|
||
|
|
||
|
|
||
|
/***/ })
|
||
|
/******/ ]);
|