node-stdlib-browser
Version:
Node standard library for browser.
24 lines (20 loc) • 442 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
/**
* @param {string} s
*/
function passthrough(s) {
return s;
}
var ucs2 = {
encode: passthrough,
decode: passthrough
};
var version = '0.0.0';
exports.decode = passthrough;
exports.encode = passthrough;
exports.toASCII = passthrough;
exports.toUnicode = passthrough;
exports.ucs2 = ucs2;
exports.version = version;
//# sourceMappingURL=punycode.js.map
;