1.0.0 • Published 11 years ago

assert-keys v1.0.0

Weekly downloads
6
License
-
Repository
-
Last release
11 years ago

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!