Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / object / defaults.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/object/defaults.js b/node_modules/grunt-legacy-log/node_modules/lodash/object/defaults.js
new file mode 100644 (file)
index 0000000..c05011e
--- /dev/null
@@ -0,0 +1,25 @@
+var assign = require('./assign'),
+    assignDefaults = require('../internal/assignDefaults'),
+    createDefaults = require('../internal/createDefaults');
+
+/**
+ * Assigns own enumerable properties of source object(s) to the destination
+ * object for all destination properties that resolve to `undefined`. Once a
+ * property is set, additional values of the same property are ignored.
+ *
+ * **Note:** This method mutates `object`.
+ *
+ * @static
+ * @memberOf _
+ * @category Object
+ * @param {Object} object The destination object.
+ * @param {...Object} [sources] The source objects.
+ * @returns {Object} Returns `object`.
+ * @example
+ *
+ * _.defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' });
+ * // => { 'user': 'barney', 'age': 36 }
+ */
+var defaults = createDefaults(assign, assignDefaults);
+
+module.exports = defaults;