Sha256: 851fc7ac677e2ce370b86484aecf619b450fd8af66b6ccf3a03a5392884b4b57
Contents?: true
Size: 331 Bytes
Versions: 97
Compression:
Stored size: 331 Bytes
Contents
/*! * is-extendable <https://github.com/jonschlinkert/is-extendable> * * Copyright (c) 2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; module.exports = function isExtendable(val) { return typeof val !== 'undefined' && val !== null && (typeof val === 'object' || typeof val === 'function'); };
Version data entries
97 entries across 57 versions & 21 rubygems