securityos/node_modules/string.prototype.codepointat
Berkeley 927854894b First commit 2024-09-06 12:32:35 -03:00
..
LICENSE-MIT.txt First commit 2024-09-06 12:32:35 -03:00
README.md First commit 2024-09-06 12:32:35 -03:00
codepointat.js First commit 2024-09-06 12:32:35 -03:00
package.json First commit 2024-09-06 12:32:35 -03:00

README.md

ES6 String.prototype.codePointAt polyfill Build status

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

Other polyfills for String.prototype.codePointAt are available:

Installation

In a browser:

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

Via npm:

npm install string.prototype.codepointat

Then, in Node.js:

require('string.prototype.codepointat');

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

Notes

A polyfill + test suite for String.fromCodePoint is available, too.

Author

twitter/mathias
Mathias Bynens

License

This polyfill is available under the MIT license.