enclose-io/compiler

View on GitHub
lts/lib/internal/idna.js

Summary

Maintainability
A
2 hrs
Test Coverage
'use strict';

if (internalBinding('config').hasIntl) {
  const { toASCII, toUnicode } = internalBinding('icu');
  module.exports = { toASCII, toUnicode };
} else {
  const { toASCII, toUnicode } = require('punycode');
  module.exports = { toASCII, toUnicode };
}