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
.ifHasmethod has become the default.
Ā
License
ISC