1.0.1 • Published 5 years ago

key-exists v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

key-exists

CircleCI NPM Downloads node License MIT

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