diff options
Diffstat (limited to 'includes/external/school/node_modules/lodash/isObject.js')
-rw-r--r-- | includes/external/school/node_modules/lodash/isObject.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/includes/external/school/node_modules/lodash/isObject.js b/includes/external/school/node_modules/lodash/isObject.js deleted file mode 100644 index 1dc8939..0000000 --- a/includes/external/school/node_modules/lodash/isObject.js +++ /dev/null @@ -1,31 +0,0 @@ -/** - * Checks if `value` is the - * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) - * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an object, else `false`. - * @example - * - * _.isObject({}); - * // => true - * - * _.isObject([1, 2, 3]); - * // => true - * - * _.isObject(_.noop); - * // => true - * - * _.isObject(null); - * // => false - */ -function isObject(value) { - var type = typeof value; - return value != null && (type == 'object' || type == 'function'); -} - -module.exports = isObject; |