.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _copySymbols.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_copySymbols.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_copySymbols.js
new file mode 100644 (file)
index 0000000..c35944a
--- /dev/null
@@ -0,0 +1,16 @@
+var copyObject = require('./_copyObject'),
+    getSymbols = require('./_getSymbols');
+
+/**
+ * Copies own symbols of `source` to `object`.
+ *
+ * @private
+ * @param {Object} source The object to copy symbols from.
+ * @param {Object} [object={}] The object to copy symbols to.
+ * @returns {Object} Returns `object`.
+ */
+function copySymbols(source, object) {
+  return copyObject(source, getSymbols(source), object);
+}
+
+module.exports = copySymbols;