1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 11:35:29 +00:00
notes/node_modules/lodash/stubObject.js

24 lines
400 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/**
* This method returns a new empty object.
*
* @static
* @memberOf _
* @since 4.13.0
* @category Util
* @returns {Object} Returns the new empty object.
* @example
*
* var objects = _.times(2, _.stubObject);
*
* console.log(objects);
* // => [{}, {}]
*
* console.log(objects[0] === objects[1]);
* // => false
*/
function stubObject() {
return {};
}
module.exports = stubObject;