|
5 miesięcy temu | |
---|---|---|
.. | ||
LICENSE-MIT.txt | 5 miesięcy temu | |
README.md | 5 miesięcy temu | |
fromcodepoint.js | 5 miesięcy temu | |
package.json | 5 miesięcy temu |
String.fromCodePoint
polyfill An robust & optimized ES3-compatible polyfill for the String.fromCodePoint
method in ECMAScript 6.
Other polyfills for String.fromCodePoint
are available:
In a browser:
<script src="fromcodepoint.js"></script>
Via npm:
npm install string.fromcodepoint
Then, in Node.js:
require('string.fromcodepoint');
// On Windows and on Mac systems with default settings, case doesn’t matter,
// which allows you to do this instead:
require('String.fromCodePoint');
A polyfill + test suite for String.prototype.codePointAt
is available, too.
The tests for this repository are now used by Mozilla, to help ensure their native String.fromCodePoint
implementation is correct.
Mathias Bynens |
This polyfill is available under the MIT license.