has-props-js

1.0.2 • Public • Published

has-props-js

The library to determines whether an object has the specified properties.

Installation

npm i has-props-js

or

yarn add has-props-js

Usage

import hasProps from "has-props-js";

const myObject = { orange: "Orange", lemon: "Lemon", watermelon: "Watermelon" };

hasProps(myObject, "orange"); // true
hasProps(myObject, ["orange", "lemon"]); // true
hasProps(myObject, ["orange", "lemon"], { pick: true }); // false

API

hasProps(object, props, options)

  • object - object (Required) - The object to check
  • props - string | number | symbol | any[] (Required) - The property to check, accept multiple properties as an array
  • options - object (Optional) - options.pick option allow the object can only contain properties of props
  • return an boolean

Package Sidebar

Install

npm i has-props-js

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

2.39 kB

Total Files

3

Last publish

Collaborators

  • camcam2605