Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

memoize-cache-utils

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

memoize-cache-utils

Utilities for memoize-cache

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

memoize-cache-utils

Utilities for memoize-cache.

key-getter

This is an utility function used to generate a function that returns a key from a variable number of arguments.

var keyGetter = require('memoize-cache-utils/key-getter')
var getKey = keyGetter(func, prefix);

It takes 2 arguments:

  • a function that returns a key (if undefined the default will be a function returning null). Valid outputs are: null, a string or an object. null will default to the key "_default" a string will be used as it is and objects wiil be serialized and hashed.
  • an optional prefix. This will be added to the key (default '')

Keywords

FAQs

Package last updated on 04 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc