/
home2
/
dakshskx
/
test.dakshadesign.com
/
node_modules
/
lodash.isobject
/
/home2/dakshskx/test.dakshadesign.com/node_modules/lodash.isobject
mkdir
upload
Name
Size
Mode
Actions
index.js
1141
0644
edit
dl
rm
LICENSE.txt
1233
0644
edit
dl
rm
package.json
896
0644
edit
dl
rm
README.md
573
0644
edit
dl
rm
Edit:
/home2/dakshskx/test.dakshadesign.com/node_modules/lodash.isobject/index.js
(1141B)
/** * lodash 3.0.2 (Custom Build) <https://lodash.com/> * Build: `lodash modern modularize exports="npm" -o ./` * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors * Available under MIT license <https://lodash.com/license> */ /** * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @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(1); * // => false */ function isObject(value) { // Avoid a V8 JIT bug in Chrome 19-20. // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. var type = typeof value; return !!value && (type == 'object' || type == 'function'); } module.exports = isObject;
Save
cmd:
run