Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / internal / isObjectLike.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/internal/isObjectLike.js b/node_modules/grunt-legacy-log/node_modules/lodash/internal/isObjectLike.js
new file mode 100644 (file)
index 0000000..8ca0585
--- /dev/null
@@ -0,0 +1,12 @@
+/**
+ * Checks if `value` is object-like.
+ *
+ * @private
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
+ */
+function isObjectLike(value) {
+  return !!value && typeof value == 'object';
+}
+
+module.exports = isObjectLike;