You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott 2981f24f92 tools: update ESLint to v3.8.0 8 years ago
..
index.js tools: update eslint to v1.10.3 9 years ago
license tools: update eslint to v1.10.3 9 years ago
package.json tools: update ESLint to v3.8.0 8 years ago
readme.md tools: update ESLint to 2.9.0 9 years ago

readme.md

onetime Build Status

Only call a function once

When called multiple times it will return the return value from the first call.

Unlike the module once, this one isn't naughty extending Function.prototype.

Install

$ npm install --save onetime

Usage

let i = 0;

const foo = onetime(() => i++);

foo(); //=> 0
foo(); //=> 0
foo(); //=> 0

API

onetime(function, [shouldThrow])

function

Type: function

Function that should only be called once.

shouldThrow

Type: boolean
Default: false

Set to true if you want it to fail with a nice and descriptive error when called more than once.

License

MIT © Sindre Sorhus