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

execute-once

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

execute-once

Execute a high order function just once, successive calls will eventually return the previous result.

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

execute-once

Execute a high order function just once, successive calls will eventually return the previous result.

Installation

$ npm install execute-once

Usage

const executeOnce = require(execute-once)

//Execute a void high order function
let logOnce = new executeOnce()

//Pass an high order function in the execute method
logOnce.execute(() => console.log('test'))
logOnce.execute(() => console.log('test')) // this call will not be executed

//Execute a non-void high order function
let sumOnce = new executeOnce()

let sum = (a,b) => a+b

let result = sumOnce.execute(() => sum(1,2))
console.log(result) // result is 3

let result2 = sumOnce.execute(() => sum(2,3))
console.log(result2) // result is still 3 so for each new function you need to instantiate the executeOnce again

Keywords

FAQs

Package last updated on 03 Apr 2022

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