a0bda52a82afa4ff92ec5c8be2ba4a393a32e51f206a0c8ca8854262049f4748d6c2bdc67a64a7c6d5fde559eda94ba8ce8c58a413651bbce5a8b62c510b3e 288 B

123456789101112
  1. /*!
  2. * isobject <https://github.com/jonschlinkert/isobject>
  3. *
  4. * Copyright (c) 2014-2017, Jon Schlinkert.
  5. * Released under the MIT License.
  6. */
  7. 'use strict';
  8. module.exports = function isObject(val) {
  9. return val != null && typeof val === 'object' && Array.isArray(val) === false;
  10. };