aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash._basecopy/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash._basecopy/index.js')
-rw-r--r--node_modules/lodash._basecopy/index.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/node_modules/lodash._basecopy/index.js b/node_modules/lodash._basecopy/index.js
new file mode 100644
index 000000000..b586d31d9
--- /dev/null
+++ b/node_modules/lodash._basecopy/index.js
@@ -0,0 +1,32 @@
+/**
+ * lodash 3.0.1 (Custom Build) <https://lodash.com/>
+ * Build: `lodash modern modularize exports="npm" -o ./`
+ * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
+ * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
+ * Available under MIT license <https://lodash.com/license>
+ */
+
+/**
+ * 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 baseCopy(source, props, object) {
+ object || (object = {});
+
+ var index = -1,
+ length = props.length;
+
+ while (++index < length) {
+ var key = props[index];
+ object[key] = source[key];
+ }
+ return object;
+}
+
+module.exports = baseCopy;