Method would check that an object contains _all_ the keys that the user is concerned with. ``` javascript var obj = { foo: 'bar', fizz: 'buzz' } is.keyed(obj, ['foo', 'fizz']) // true is.keyed(obj, ['foo', 'fizz', 'fart']) // false ```