kutyel / linq.ts

🌀LINQ for TypeScript

Home Page:http://kutyel.github.io/linq.ts/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Browser support information needed

fahadash opened this issue · comments

The docs need to be updated with the list of supported browsers. Is there a place where we can find this information?

Hi, the compilation target is es5, therefore the compatibility table is this one: http://kangax.github.io/compat-table/es5/, feel free to add it to the README.md in a PR or provide it some other way to the repo 😉

Are you sure your target is ES5? I downloaded the package from NPM and .js files have “class” keyword used widely.

Absolutely sure! I just opened the dist folder (which is the one being published) and there are several files depending on the consumer, have a look at the picture:
dist
I think the one you should be concerned about is the *.umd.js version (for browsers) and that one does not contain any classes 😉

Thank you. I have tried typescript-linq which is not es5 compliant. Tried line-es5 which is buggy, I am going to give this one a try now.