You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suresh 7185b2d1c4
Removed multer
3 years ago
..
LICENSE-MIT.txt Removed multer 3 years ago
README.md Removed multer 3 years ago
package.json Removed multer 3 years ago
startswith.js Removed multer 3 years ago

README.md

ES6 String.prototype.startsWith polyfill Build status

A robust & optimized ES3-compatible polyfill for the String.prototype.startsWith method in ECMAScript 6.

Other polyfills for String.prototype.startsWith are available:

Installation

In a browser:

<script src="startswith.js"></script>

Via npm:

npm install string.prototype.startswith

Then, in Node.js:

require('string.prototype.startswith');

// On Windows and on Mac systems with default settings, case doesnt matter,
// which allows you to do this instead:
require('String.prototype.startsWith');

Notes

Polyfills + test suites for String.prototype.endsWith and String.prototype.contains are available, too.

Author

twitter/mathias
Mathias Bynens

License

This polyfill is available under the MIT license.