assert-keys
v1.0.0
Published
assert an object has some keys
Downloads
15
Readme
assert-keys
asserts that some keys are present in an object
install
npm i assert-keys
example
var checkConfig = require('assert-keys')(['port', 'api_url']);
checkConfig({port: 8000, api_url: 'http://localhost:1234'}); // doesn't throw
checkConfig({port: 8000}); // throws!