blob: 2d59958bf4eab6663b5c4e0b500978d86fdf2d4a [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001/*!
2 * isobject <https://github.com/jonschlinkert/isobject>
3 *
4 * Copyright (c) 2014-2017, Jon Schlinkert.
5 * Released under the MIT License.
6 */
7
8'use strict';
9
10module.exports = function isObject(val) {
11 return val != null && typeof val === 'object' && Array.isArray(val) === false;
12};