Version 1
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _cloneSymbol.js
diff --git a/node_modules/grunt-legacy-util/node_modules/lodash/_cloneSymbol.js b/node_modules/grunt-legacy-util/node_modules/lodash/_cloneSymbol.js
new file mode 100644 (file)
index 0000000..ac0217d
--- /dev/null
@@ -0,0 +1,18 @@
+var Symbol = require('./_Symbol');
+
+/** Used to convert symbols to primitives and strings. */
+var symbolProto = Symbol ? Symbol.prototype : undefined,
+    symbolValueOf = Symbol ? symbolProto.valueOf : undefined;
+
+/**
+ * Creates a clone of the `symbol` object.
+ *
+ * @private
+ * @param {Object} symbol The symbol object to clone.
+ * @returns {Object} Returns the cloned symbol object.
+ */
+function cloneSymbol(symbol) {
+  return Symbol ? Object(symbolValueOf.call(symbol)) : {};
+}
+
+module.exports = cloneSymbol;