d35c1def706408e89e25d849fb180bdd0e2de65cf403ded3502b5c043d27535f4bf94d653f6689a0a89d60dde272082f7e31f6f3073d0ac541f500e690d9be 331 B

12345678910111213
  1. /*!
  2. * is-extendable <https://github.com/jonschlinkert/is-extendable>
  3. *
  4. * Copyright (c) 2015, Jon Schlinkert.
  5. * Licensed under the MIT License.
  6. */
  7. 'use strict';
  8. module.exports = function isExtendable(val) {
  9. return typeof val !== 'undefined' && val !== null
  10. && (typeof val === 'object' || typeof val === 'function');
  11. };