JSPM

@bevry/memo

3.10.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 29
  • Score
    100M100P100Q46066F
  • License MIT

Wrap a function in a memo to reuse the first invocation result of the function

Package Exports

  • @bevry/memo

Readme

@bevry/memo

Travis CI Build Status NPM version NPM downloads Dependency Status Dev Dependency Status
GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Wrap a function in a memo to reuse the first invocation result of the function

Usage

Complete API Documentation.

import memo from '@bevry/memo'

let count = 0
function counter() {
    return ++count
}

const counterMemo = memo(counter)

counterMemo() // returns 1
counterMemo() // returns 1

Install

npm

  • Install: npm install --save @bevry/memo
  • Import: import pkg from ('@bevry/memo')
  • Require: const pkg = require('@bevry/memo').default

Deno

import pkg from 'https://unpkg.com/@bevry/memo@^3.10.0/edition-deno/index.ts'

pika

<script type="module">
    import pkg from '//cdn.pika.dev/@bevry/memo/^3.10.0'
</script>

unpkg

<script type="module">
    import pkg from '//unpkg.com/@bevry/memo@^3.10.0'
</script>

jspm

<script type="module">
    import pkg from '//dev.jspm.io/@bevry/memo@3.10.0'
</script>

Editions

This package is published with the following editions:

  • @bevry/memo/source/index.ts is TypeScript source code with Import for modules
  • @bevry/memo aliases @bevry/memo/edition-esnext/index.js
  • @bevry/memo/edition-esnext/index.js is TypeScript compiled against ESNext for Node.js 10 || 12 || 13 || 14 with Require for modules
  • @bevry/memo/edition-browsers/index.js is TypeScript compiled against ES2019 for web browsers with Import for modules
  • @bevry/memo/edition-node-esm/index.js is TypeScript compiled against ESNext for Node.js with Import for modules
  • @bevry/memo/edition-deno/index.ts is TypeScript source code made to be compatible with Deno

History

Discover the release history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Unless stated otherwise all works are:

and licensed under: