Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / baseSetData.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/baseSetData.js b/node_modules/uncss/node_modules/lodash/internal/baseSetData.js
new file mode 100644 (file)
index 0000000..9638300
--- /dev/null
@@ -0,0 +1,17 @@
+var identity = require('../identity'),
+    metaMap = require('./metaMap');
+
+/**
+ * The base implementation of `setData` without support for hot loop detection.
+ *
+ * @private
+ * @param {Function} func The function to associate metadata with.
+ * @param {*} data The metadata.
+ * @returns {Function} Returns `func`.
+ */
+var baseSetData = !metaMap ? identity : function(func, data) {
+  metaMap.set(func, data);
+  return func;
+};
+
+module.exports = baseSetData;