Skip to content

linuxninja39/npm-jlinq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm-jlinq

jlinq.from(data.source) .starts('first', 'a') .select();

//complex queries - no need to repeat names //when querying the same field jlinq.from(data.source) .starts('first', 'a') .or('b') .or('c') .sort('last') .select();

//sorting - multiple field jlinq.from(data.source) .greater('age', 40) .sort('age', 'name'); .select();

About

Total rewrite of jLinq - Public beta code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.8%
  • HTML 0.2%