wallet-core/node_modules/acorn/src/util.js
2017-05-03 15:35:00 +02:00

12 lines
274 B
JavaScript

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]"
))