Jinqu Array Prototype extensions.
npm install jinqu-array-extensionsshell
npm i jinqu-array-extensions
`
Usage
You only need to import the package, Jinqu query methods will be attached to Array Prototype.
`typescript
import 'jinqu-array-extensions';
const arr = [1, 2, 3];
// arr.asQueryable() is not needed.
const first = arr.first();
// if you don't want to use extension methods
// and think "asQueryable" is too long, you can use "q"
const last = arr.q().last();
``