npm.io
0.3.6 • Published 1 year ago

objpop

Licence
ISC
Version
0.3.6
Deps
0
Size
9 kB
Vulns
0
Weekly
0

objpop

Pop properties from objects and verify you got all of them.

Usage

from test/usage.mjs:

import objPop from 'objpop';
function makeSandwich(receipe) {
  const pop = objPop(receipe);
  const sandwich = ('šŸž'
    + repeat(pop.ifHas('lettuce', 0), 'šŸ€') // unicode is weak on salad.
    + repeat(pop.ifHas('tomato', 0), 'šŸ…')
    + repeat(pop.ifHas('ham', 0), 'šŸ—')  // close enough.
    + repeat(pop.ifHas('pineapple', 0), 'šŸ')
    + repeat(pop.ifHas('cheese', 0), 'šŸ§€')
    + repeat(pop.ifHas('cherry', 0), 'šŸ’')
  );
  pop.expectEmpty('unknown ingredients');
  return sandwich;
}

const hawaii = { ham: 1, pineapple: 1, cheese: 1, cherry: 1 };
assert.equal(makeSandwich(hawaii), 'šŸžšŸ—šŸšŸ§€šŸ’');

// Original object wasn't modified, so it works again:
assert.equal(makeSandwich(hawaii), 'šŸžšŸ—šŸšŸ§€šŸ’');

// Except when you use direct mode (.d):
const directPop = objPop.d(hawaii);
assert.equal(directPop('cherry'), 1);
assert.equal(directPop('cherry'), undefined);

const blt = { bacon: 2, lettuce: 3, tomato: 3 };
assert.throws(() => makeSandwich(blt),
  'LeftoverKeys: unknown ingredients: bacon');
// Unicode would be way better with bacon.

Known issues

  • Needs more/better tests and docs.
  • Starting in v0.2.0, you can no longer pop inherited properties even in direct mode. The former .ifHas method has become the default.

Ā 

License

ISC