Socket
Book a DemoInstallSign in
Socket

once-component

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

once-component

Make a method callable only once

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

once

Make a function or method callable only once. Useful for initialization methods that may be lazily invoked from several locations, but must only be called once, otherwise the method is a noop.

Installation

$ component install component/once

API

var once = require('once');

Foo.prototype.setup = once(function(){
  // expensive stuff here
});

License

MIT

FAQs

Package last updated on 19 Feb 2013

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