UNPKG

@bunq-community/bunq-js-client

Version:

[![NPM Version](https://img.shields.io/npm/v/@bunq-community/bunq-js-client.svg) ](https://github.com/@bunq-community/bunq-js-client) [![NPM Downloads](https://img.shields.io/npm/dt/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/package/@bun

12 lines (11 loc) 362 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (fileLocation) => { const JSONStore = require("json-store"); const store = JSONStore(fileLocation); return { get: (key) => store.get(key), set: (key, value) => store.set(key, value), remove: (key) => store.set(key, null) }; };