This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
288 B
JavaScript
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/
'use strict';
module.exports = function isObject(val) {
return val != null && typeof val === 'object' && Array.isArray(val) === false;
};