Socket
Book a DemoInstallSign in
Socket

kuma

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kuma

Lazy properties for Objects

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

kuma

Lazy properties for Objects!

kuma creates lazy properties for Objects which get evaluated & cached the first time they are accessed. This is an easy way to delay going over the wire for an async value, or running an inline function!

Example

const kuma = require("kuma");
let x = {};

kuma(x, "abc", "foo");
x.abc; // "foo" <- string has been cached
x.abc; // "foo" <- accessed the cached value
x.abc = "bar"; // <- cleared the cached value, & result
x.abc; // "bar" <- string has been cached

// Creating a lazy `Promise` via `fetch()`, re-executing this would clear a cached `Promise`
kuma(x, "github", function () {
  return fetch("https://api.github.com/").then(function(res) {
    return res.json();
  });
});

// Access the property later; it'll be cached until `x.github` is overridden
x.github.then(function(data) {
  console.log(data);
}, function (e) {
  console.error(e.stack || e.message || e);
});

How can I load kuma?

kuma supports AMD loaders (require.js, curl.js, etc.), node.js & npm (npm install kuma), or using a script tag.

License

Copyright (c) 2016 Jason Mulligan Licensed under the BSD-3 license.

Keywords

lazy

FAQs

Package last updated on 07 Apr 2016

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