diff --git a/.travis.yml b/.travis.yml index 6e5919d..c56c5bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ language: node_js node_js: - "0.10" + - "0.12" + - "4" diff --git a/README.md b/README.md index 2f44527..cc5d54f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ES6 `String.prototype.repeat` polyfill [![Build status](https://travis-ci.org/mathiasbynens/String.prototype.repeat.svg?branch=master)](https://travis-ci.org/mathiasbynens/String.prototype.repeat) -A robust & optimized ES3-compatible polyfill for [the `String.prototype.repeat` method in ECMAScript 6](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.repeat). +A robust & optimized ES3-compatible polyfill for [the `String.prototype.repeat` method in ECMAScript 6](http://ecma-international.org/ecma-262/6.0/#sec-string.prototype.repeat). Other polyfills for `String.prototype.repeat` are available: @@ -14,13 +14,13 @@ In a browser: ``` -Via [npm](http://npmjs.org/): +Via [npm](https://www.npmjs.com/): ```bash npm install string.prototype.repeat ``` -Then, in [Node.js](http://nodejs.org/): +Then, in [Node.js](https://nodejs.org/): ```js require('string.prototype.repeat');