shittylinq
v0.0.3
Published
_The shitty version of the C# LINQ-to-objects Enumerable extension methods for JavaScript._
Downloads
3
Readme
ShittyLINQ.js
The shitty version of the C# LINQ-to-objects Enumerable extension methods for JavaScript.
What this is
A function which, when called, adds a bunch of methods to Array.prototype
mirroring the System.Linq
namespace from C#.
What this is not
- Performant
- The good version of LINQ
What's up with the name?
This project is based on the ShittyLINQ .NET package.
Usage
Run the follwing to install the library:
npm install shittylinq
The library only needs to be imported once. The library exports a single function that needs to be called before the methods can be used. Since the methods are bound to the array prototype, the methods will be available in modules other than where the imported function is called.
require('shittylinq')();
[2, 9, 1, 7, 4]
.Where(x => x % 2 !== 0)
.Take(2)
.Aggregate((a, b) => a + b);
// <- 10
Developing
Please read the contribution guide before beginning development.
Once the project is cloned, run
npm install
This will set up Git hooks to run Prettier when a commit is made.
Running Tests
Tests are run using Mocha. Chai is used as the assertion library.
npm test
License?
MIT