You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
identitygrouping: IdentityGrouping no longer has a "hash" field as using a hash no longer provides
any benefit.
unqiuebyidentitywithhash: The uniqueByIdentityWithHash functions have been deleted. Use uniqueByIdentity
instead. The uniqueByIdentity function now uses an ES2017 Set internally. As a result no additional
benefit is provided by the addition of a hash function, so uniqueByIdentityWithHash is redundant.
groupbyidentitywithhash: The groupByIdentityWithHash functions have been deleted. Use groupByIdentity
instead. The groupByIdentity function now uses an ES2017 Map internally. As a result no additional
benefit is provided by the addition of a hash function, so groupByIdentityWithHash is redundant.
keyby: The keyBy functions now return an ES2017 Map instead of a Dictionary. The order of
the parameterized types to these functions has also been changed to match the ordering used by Map.
This library now requires ES2017 API features. This breaks compatibility with Node
< 8.10 and very old browsers that do not provide the ES2017 API. If you need to support older
browsers then you should provide an ES2017 polyfill or continue to use v3.x of this library.
This library now uses ES2017 syntax. This breaks compatibility with Node < 8.10 and
very old browsers that do not support ES2017 syntax. If you need to support older browsers, then you
should use Babel to compile ES6+ code down to ES5.