ooflorent / unmethodify

Unmethodify functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unmethodify

Usage

var unmethodify = require('unmethodify')
var hasOwnProperty = unmethodify(Object.property.hasOwnProperty)

var obj = {
  foo: 'bar'
}

hasOwnProperty(obj, 'foo') // true
hasOwnProperty(obj, 'baz') // false

About

Unmethodify functions

License:MIT License


Languages

Language:JavaScript 100.0%