Socket
Socket
Sign inDemoInstall

functionify

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    functionify

Wraps non-function values in a getter function


Version published
Weekly downloads
9
increased by350%
Maintainers
1
Install size
22.2 kB
Created
Weekly downloads
 

Readme

Source

functionify

Wraps non-function values in a getter function

Build Status Code Coverage NPM Version

Install

$ npm install --save functionify

Usage

var functionify = require('functionify');

var getter;

getter = functionify('foo');
getter();
//=> 'foo'

getter = functionify(function(){
    return 'bar';
});
getter();
//=> 'bar'

License

MIT © JM Versteeg

devDependency Status

Keywords

FAQs

Last updated on 19 Dec 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc