UNPKG

string.fromcodepoint

Version:

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

13 lines (8 loc) 214 B
'use strict'; var implementation = require('../implementation'); var test = require('tape'); var runTests = require('./tests'); test('implementation', function (t) { runTests(implementation, t); t.end(); });