UNPKG

faye

Version:

Simple pub/sub messaging for the web

11 lines (8 loc) 229 B
'use strict'; var array = require('./array'); module.exports = function(options, validKeys) { for (var key in options) { if (array.indexOf(validKeys, key) < 0) throw new Error('Unrecognized option: ' + key); } };