| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | /*! |
| 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 | |||||
| 10 | module.exports = function isObject(val) { | ||||
| 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; | ||||
| 12 | }; | ||||