key-exists
v1.0.1
Published
Check if object has property, super fast
Downloads
10
Maintainers
Readme
key-exists
Check if Object has Property, super fast
Highlights
Super Fast
Written in Typescript
Usage
import keyExists from 'key-exists';
const greet = {
hello: 'world',
bonjour: 'le monde'
};
keyExists(greet, 'hello'); // true
keyExists(greet, 'bye'); // false
License
MIT © Nivrith Mandayam Gomatam