JSPM

has-own-property

2.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 127808
  • Score
    100M100P100Q165413F
  • License MIT

Package Exports

  • has-own-property

Readme

Has Own Property?

Check if an object has a local property.

Installation

npm install --save has-own-property

Usage

import hasOwnProperty from 'has-own-property'

const obj = { a: 1 }

hasOwnProperty(obj, 'a') // true
hasOwnProperty(obj, 'b') // false

API

hasOwnProperty(object, name)

  • object (object, required)
  • name (string | number | symbol, required)
  • returns boolean

Determines whether an object has a property with the specified name.