Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _copyObject.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/_copyObject.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/_copyObject.js
new file mode 100644 (file)
index 0000000..f8406b6
--- /dev/null
@@ -0,0 +1,16 @@
+var copyObjectWith = require('./_copyObjectWith');
+
+/**
+ * Copies properties of `source` to `object`.
+ *
+ * @private
+ * @param {Object} source The object to copy properties from.
+ * @param {Array} props The property names to copy.
+ * @param {Object} [object={}] The object to copy properties to.
+ * @returns {Object} Returns `object`.
+ */
+function copyObject(source, props, object) {
+  return copyObjectWith(source, props, object);
+}
+
+module.exports = copyObject;