Giter Site home page Giter Site logo

cash's Introduction

Cash

  • Cache module extending the native Map class.
  • I wrote this because someone in a Discord server had no idea how to. I don't personally use this code and it may (expect it to) be un-maintained.

Start

  • Cache(s) retain all methods that Maps have.
  • This does not override or modify Map in any way.
const Cash = require('cash');
const Cache = new Cash(/* Map options */);

Additions

index

Finds the index of a given key. Similar to Array.indexOf.

Cache.index('key');

keyArray

Returns an array of the cache's keys.

Cache.keyArray();

valueArray

Returns an array of the cache's values. Better than <Map>.values because it doesn't involve Iterators.

Cache.valueArray();

setAll

Sets multiple entries at once.

Cache.setAll({ acceptNull: true }, ['k', 'v'], ['k2', 'v2']);

concat

Concat two caches (or concat a Map to Cache).

const map = new Map();
map.set('a', 'b');
map.set('c', 'd');

Cache.concat(map);
Cache.concat('string'); // error

stringify

Convert to valid JSON that can be saved or read from. It can also be parsed using Cache.parse().

Cache.stringify();

parse

Convert JSON string to a Map object.

Cache.parse();
// convert back to Cache
const cache = new Cash(Cache.parse('{ "JSON": "string" }'));

property length

Alias for Map.size.

cash's People

Contributors

khafradev avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.