-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated jest-cli to avoid errors with Node >= 11.11.0 (see jestjs/j…
…est#8050) - Updated eslint rules - Removed `gulp-jest`
- Loading branch information
1 parent
27a0668
commit e4fece6
Showing
9 changed files
with
869 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming. | ||
* @author Andrea Scartabelli <[email protected]> | ||
* @version 0.58.0-alpha.1 | ||
* @version 0.58.0-alpha.2 | ||
* @module lamb | ||
* @license MIT | ||
* @preserve | ||
|
@@ -6374,9 +6374,9 @@ | |
* @returns {Object} | ||
*/ | ||
function updateIn (source, key, updater) { | ||
return _isEnumerable(source, key) ? | ||
_setIn(source, key, updater(source[key])) : | ||
_merge(enumerables, source, {}); | ||
return _isEnumerable(source, key) | ||
? _setIn(source, key, updater(source[key])) | ||
: _merge(enumerables, source, {}); | ||
} | ||
|
||
/** | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.