Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web streams (ReadableStream) support, blob & arrayBuffer accessors, ES6 #140

Closed
wants to merge 13 commits into from
31 changes: 31 additions & 0 deletions .jshintrc
@@ -0,0 +1,31 @@
{
"predef": [
"setImmediate",
"Map",
"Set"
],

"bitwise": true,
"laxbreak": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"regexp": false,
"undef": true,
"strict": true,
"trailing": true,

"smarttabs": true,
"multistr": true,

"node": true,

"nomen": false,
"loopfunc": true,
"esnext": true
}
7 changes: 3 additions & 4 deletions .travis.yml
@@ -1,7 +1,6 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- "node"
- "4"
- "6"
before_install: npm install -g npm
script: npm run coverage
script: npm run coverage