is-implemented.js 227 B

1234567
  1. 'use strict';
  2. module.exports = function () {
  3. var fromCodePoint = String.fromCodePoint;
  4. if (typeof fromCodePoint !== 'function') return false;
  5. return fromCodePoint(0x1D306, 0x61, 0x1D307) === '\ud834\udf06a\ud834\udf07';
  6. };