rit / icemaker-unpack

Inject object properties into a callback using argument identifiers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

icemaker-unpack

Synopsis

Spread object proporties or array elements into a callback function. It makes unit tests more expressive and concise.

Usage

var numbers = {
  "one": 1,
  "two": 2,
  "three": 3
}

const unpack = require('icemaker-unpack');
unpack(numbers, (one, two, three) => {
  let sum = one + two + three;
  assert sum === 6
});

License

MIT

About

Inject object properties into a callback using argument identifiers

License:MIT License


Languages

Language:JavaScript 100.0%