0.9.3 • Published 6 years ago

linq-to-objects v0.9.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

linq-to-objects

Implements linq for javascript

Installation

npm install linq-to-objects --save

OR

yarn add linq-to-objects --save

References in NodeJs

require("linq-to-objects");

References in browser after install

<script src="./node_modules/linq-to-objects/distrib/linq-to-objects.min.js"></script>

For IE only (>=10), you need to add this polyfill script

References in browser without install

Table Of Contents

Note See the complete documentation on Github > linq-to-objects

Array Extension

  • add
  • addRange
  • aggregate
  • all
  • any
  • average
  • clear
  • concat
  • count
  • distinct
  • equals
  • first
  • firstOrDefault
  • insertAt
  • insertRangeAt
  • getRange
  • groupBy
  • innerJoin
  • intersect
  • last
  • lastOrDefault
  • min
  • max
  • orderBy
  • orderByDescending
  • removeAll
  • removeAt
  • removeRange
  • reverse
  • selectNew
  • skip
  • skipWhile
  • sum
  • takeWhile
  • union
  • whileIndex
  • where