node-enumerable icon indicating copy to clipboard operation
node-enumerable copied to clipboard

ES2017 ready LINQ features written in TypeScript.

Results 6 node-enumerable issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [shelljs](https://github.com/shelljs/shelljs) from 0.8.4 to 0.8.5. Release notes Sourced from shelljs's releases. v0.8.5 This was a small security fix for #1058. Commits 70668a4 0.8.5 d919d22 fix(exec): lockdown file permissions (#1060)...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.6 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...

dependencies

`groupJoin` produces empty result when inner is empty. Let's see the following example. ```javascript const Enumerable = require("node-enumerable"); const persons = [ { name: "Tanja" }, { name: "Marcel" },...

This comes from the `index.d.ts`, specifically these 3 functions: ```ts function isNullOrEmpty(seq: IEnumerable): seq is (null | IEnumerable); function isUndefinedNullOrEmpty(seq: IEnumerable): seq is (undefined | null | IEnumerable); function isUndefinedOrEmpty(seq:...