Skip to content

BeAnMo/arrql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gitpod ready-to-code

arrql

SQL for arrays.

import { select, avg } from 'arrql';

const name = row => row.name;
const age = row => row.age;
const favoriteColor = row => row.color;

const table = [
    // ...
];

select(favoriteColor, avg(avg))
    .from(table)
    .groupBy(favoriteColor)
    .exec();

About

SQL for arrays.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors