wallet-core/node_modules/acorn/src/util.js

12 lines
274 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02:00
const {hasOwnProperty, toString} = Object.prototype
// Checks if an object has a property.
export function has(obj, propName) {
return hasOwnProperty.call(obj, propName)
}
export const isArray = Array.isArray || ((obj) => (
toString.call(obj) === "[object Array]"
))