Releases: ascartabelli/lamb
Releases · ascartabelli/lamb
v0.61.1
v0.61.0
- Added
symmetricDifference
- Big performance improvements to the following functions in ES6 aware environments:
difference
,intersection
,symmetricDifference
,union
,unionBy
,uniques
anduniquesBy
- Gave a new coat of paint to all tests
- Updated doc comments and streamlined some parameter names
- Dropped TravisCI for Github actions
v0.60.0
Added mean
, median
and replace
.
v0.59.2
Fixed wrong "exports" property in package.json
uploaded in the previous release.
v0.59.1
- Updated "exports" property in
package.json
to address the issue where some tools couldn't access the manifest file. See nodejs/node#33460. - Got rid of ES5 in all examples
v0.59.0
- Sorry for all the renaming, but I'm in the process of freezing the API and wanted to tackle some inconsistencies in naming choices.
- Updated to support Node.js ES modules (and renamed ES modules build to
lamb.mjs
) - Added
split
andsplitBy
- Renamed
pick
topickIn
andpickKeys
topick
- Renamed
skip
toskipIn
andskipKeys
toskip
- Renamed
rename
torenameIn
andrenameKeys
torename
- Renamed
pluck
topluckFrom
andpluckKey
topluck
- Renamed
case
tocasus
to avoid confusion and clashing with the switch statement's case - Renamed
invoker
andinvokerOn
toinvoke
andinvokeOn
- Fixed
.DS_STORE
file leaking again in thedist
folder
v0.58.0
- Added one file ES modules build
invoker
now accepts an array of bound arguments- Benched
immutable
for the moment being - Added
join
andjoinWith
- Added
findLast
,findLastWhere
,findLastIndex
,findLastIndexWhere
- Added
dropLastWhile
andtakeLastWhile
- Switched from uglify-js to terser
- Updated docs, linting and tests
v0.57.0
- Splitted the library into ES modules
sort
,sortWith
andsortedInsert
now accept an array of sorters- removed
@@lamb/placeholder
property as now the placeholder is exported as__
- Switched to Jest as a test suite
v0.56.0
compose
,intersection
,merge
,mergeOwn
,union
andzip
are now binary functions, and so are functions built withunionBy
.adapter
,allOf
,anyOf
,collect
andpipe
now accept an array of functions- Updated doc comments and tests
v0.55.0
- Added
rotate
androtateBy
- Updated link to jsDelivr
- Fixed and updated doc comments and tests