wallet-core/node_modules/isobject/index.js

13 lines
288 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
2017-08-14 05:01:11 +02:00
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
2016-10-10 03:43:44 +02:00
*/
'use strict';
module.exports = function isObject(val) {
2017-08-14 05:01:11 +02:00
return val != null && typeof val === 'object' && Array.isArray(val) === false;
2016-10-10 03:43:44 +02:00
};