• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3if (internalBinding('config').hasIntl) {
4  const { toASCII, toUnicode } = internalBinding('icu');
5  module.exports = { toASCII, toUnicode };
6} else {
7  const { toASCII, toUnicode } = require('punycode');
8  module.exports = { toASCII, toUnicode };
9}
10