master
Commits on Dec 21, 2020
-
-
I've commented out a test for `_.merge` and will re-look it as I gradually cleanup the codebase.
-
Cleanup package.json and CONTRIBUTING.md.
The master branch has been in flux for a pretty long time, so leaving the broken npm scripts and messages in CONTRIBUTING.md doesn't make sense and has been confusing to contributors. This commit removes broken npm scripts and removes all unnecessary dependencies for now.
Commits on Dec 20, 2020
-
Remove outdated contributor tips (#5008)
The `opt-cli` pre-push functionality was removed from lodash just a few days after it was added (see 2cd12c3), but the documentation encouraging contributors to use it still remains. Remove to avoid confusion for new contributors.
Commits on Oct 28, 2020
Commits on Jun 4, 2020
Commits on May 6, 2020
-
fix: fix the params of Hash#delete in in jsdoc (#4737)
Remove the unused param `hash` from the jsdoc of `Hash#delete`
Commits on May 5, 2020
-
fix: fix the jsdoc of SetCache#has (#4739)
The return type should be `boolean` instead of `number`
-
Commits on Feb 5, 2020
Commits on Jan 22, 2020
Commits on Jan 8, 2020
Commits on Nov 6, 2019
Commits on Oct 17, 2019
Commits on Sep 26, 2019
Commits on Aug 30, 2019
-
-
add order by behaviour with array similar to get method (#4453)
* add order by behaviour with array similar to get method * remove typo for fixing orderby iteratee assignment * lint fixes * update test case * include package-lock from master * Add identity function for default iteratee
Commits on Aug 28, 2019
-
-
Fix flow and flowRight parameter handling (#4445)
* Enable flow and flowRight tests * Remove flow and flowRight tests for default value and shortcut fusion * Use native rest parameters / spread operator in flow and flowRight * Fix syntax of flow and flowRight examples
Commits on Aug 26, 2019
-
Fix string methods to handle empty values (#4442)
* Enable strings category methods tests * Ensure escape, pad, padEnd, padStart, trim, trimEnd, trimStart, unescape return an empty string for falsey values * Coerce value to string using toString in truncate, capitalize and case methods * Ensure createCaseFirst returns an empty string for falsey values
Commits on Aug 24, 2019
-
Coerce findLastIndex and lastIndexOf fromIndex parameter to integer (#…
…4440) * Enable lastIndexOf, findLast and findLastIndex * Coerce findLastIndex fromIndex parameter to integer * Coerce lastIndexOf fromIndex parameter to integer
-
Commits on Aug 22, 2019
-
Ensure escapeRegExp returns an empty string when passing falsy values (…
…#4432) * Enable escapeRegExp tests * Ensure escapeRegExp returns an empty string when passing falsy values * Add parens around expression in escapeRegExp
-
Enable create tests and adapt it for the new primitive prototype beha…
…vior (#4418) * Enable create tests and adapt it for the new primitive prototype behavior * Use isObject in create tests instead of manual check * Store properties in a variable when used more than once in create tests * Add parens around arrow function params in create tests
-
Flatten at paths parameter (#4431)
* Enable at tests * Flatten at paths parameter
-
merge: copy function values independent of source index (#4429)
* merge: copy function values independent of source index * Enable merge tests
-
Ensure after n parameter is coerced from NaN to 0 (#4430)
* Enable after tests * Ensure after n parameter is coerced from NaN to 0