mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 01:47:48 +00:00
Make _.merge assign null values. [closes #151]
Former-commit-id: 5a839996db9475182d5957d2f8cb4b3c265b0d9f
This commit is contained in:
@@ -2609,7 +2609,7 @@
|
||||
|
||||
/**
|
||||
* Creates an array of numbers (positive and/or negative) progressing from
|
||||
* `start` up to but not including `stop`. This method is a port of Python's
|
||||
* `start` up to but not including `end`. This method is a port of Python's
|
||||
* `range()` function. See http://docs.python.org/library/functions.html#range.
|
||||
*
|
||||
* @static
|
||||
@@ -3135,7 +3135,7 @@
|
||||
* var initialize = _.once(createApplication);
|
||||
* initialize();
|
||||
* initialize();
|
||||
* // Application is only created once.
|
||||
* // `initialize` executes `createApplication` once
|
||||
*/
|
||||
function once(func) {
|
||||
var ran,
|
||||
|
||||
Reference in New Issue
Block a user