Skip to content

Commit

Permalink
ES2015ify
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jul 15, 2016
1 parent 8ffe8b9 commit 6fe7d36
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
@@ -1,6 +1,4 @@
language: node_js
node_js:
- '5'
- '6'
- '4'
- '0.12'
- '0.10'
2 changes: 1 addition & 1 deletion browser.js
@@ -1,5 +1,5 @@
'use strict';
var path = require('path');
const path = require('path');

module.exports = {
extends: path.join(__dirname, 'index.js'),
Expand Down
2 changes: 1 addition & 1 deletion esnext.js
@@ -1,5 +1,5 @@
'use strict';
var path = require('path');
const path = require('path');

module.exports = {
extends: path.join(__dirname, 'index.js'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
"node": ">=4"
},
"scripts": {
"test": "ava"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -70,4 +70,4 @@ And [`xo/browser`](browser.js) if you're in the browser:

## License

MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)

0 comments on commit 6fe7d36

Please sign in to comment.