Files
labeler/node_modules/isobject/index.js
T

13 lines
288 B
JavaScript
Raw Normal View History

2019-08-08 10:10:17 -04:00
/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/
2020-09-08 13:25:36 -04:00
'use strict';
module.exports = function isObject(val) {
2019-08-08 10:10:17 -04:00
return val != null && typeof val === 'object' && Array.isArray(val) === false;
};