ShittyLabs / ShittyLINQ.js

The shitty version of LINQ in JavaScript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ShittyLINQ.js

The shitty version of the C# LINQ-to-objects Enumerable extension methods for JavaScript.

Bless code style: prettier Build Status

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

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

About

The shitty version of LINQ in JavaScript.

License:MIT License


Languages

Language:JavaScript 100.0%