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

extra-lazy

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-lazy

Yet another lazy evaluation library.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.4K
increased by127.94%
Maintainers
1
Weekly downloads
 
Created
Source

extra-lazy

Yet another lazy evaluation library.

Install

npm install --save extra-lazy
# or
yarn add extra-lazy

Usage

import { lazy } from 'extra-lazy'

const getValue = lazy(() => {
  // ...
  return value
})
const value = getValue()

API

lazy

function lazy<T>(getter: () => T): () => T

Create a value lazily.

which implicitly has memoization, because the evaluation will only be performed once.

lazyFunction

function lazyFunction<Result, Args extends any[]>(
  getter: () => (...args: Args) => Result
): (...args: Args) => Result

Create a function lazily.

FAQs

Package last updated on 23 Mar 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