UNPKG

string.fromcodepoint

Version:

A robust & optimized `String.fromCodePoint` polyfill, based on the ECMAScript 6 specification.

10 lines (6 loc) 216 B
/*! https://mths.be/fromcodepoint v1.0.0 by @mathias */ 'use strict'; var implementation = require('./implementation'); module.exports = function getPolyfill() { return String.fromCodePoint || implementation; };