wallet-core/node_modules/concordance/lib/hasLength.js

8 lines
205 B
JavaScript
Raw Normal View History

2017-08-14 05:01:11 +02:00
'use strict'
const hop = Object.prototype.hasOwnProperty
function hasLength (obj) {
return Array.isArray(obj) || (hop.call(obj, 'length') && typeof obj.length === 'number')
}
module.exports = hasLength