mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 12:27:30 +00:00
75 lines
3.5 KiB
Markdown
75 lines
3.5 KiB
Markdown
# Punycode.js [](https://www.npmjs.com/package/punycode) [](https://www.jsdelivr.com/package/npm/punycode)
|
||
|
||
Punycode.js is a robust Punycode converter that fully complies to [RFC 3492](https://tools.ietf.org/html/rfc3492) and [RFC 5891](https://tools.ietf.org/html/rfc5891).
|
||
|
||
This JavaScript library is the result of comparing, optimizing and documenting different open-source implementations of the Punycode algorithm:
|
||
|
||
* [The C example code from RFC 3492](https://tools.ietf.org/html/rfc3492#appendix-C)
|
||
* [`punycode.c` by _Markus W. Scherer_ (IBM)](http://opensource.apple.com/source/ICU/ICU-400.42/icuSources/common/punycode.c)
|
||
* [`punycode.c` by _Ben Noordhuis_](https://github.com/bnoordhuis/punycode/blob/master/punycode.c)
|
||
* [JavaScript implementation by _some_](http://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion/301287#301287)
|
||
* [`punycode.js` by _Ben Noordhuis_](https://github.com/joyent/node/blob/426298c8c1c0d5b5224ac3658c41e7c2a3fe9377/lib/punycode.js) (note: [not fully compliant](https://github.com/joyent/node/issues/2072))
|
||
|
||
This project was [bundled](https://github.com/joyent/node/blob/master/lib/punycode.js) with Node.js from [v0.6.2+](https://github.com/joyent/node/compare/975f1930b1...61e796decc) until [v7](https://github.com/nodejs/node/pull/7941) (soft-deprecated).
|
||
|
||
This project provides a CommonJS module that uses ES2015+ features and JavaScript module, which work in modern Node.js versions and browsers. For the old Punycode.js version that offers the same functionality in a UMD build with support for older pre-ES2015 runtimes, including Rhino, Ringo, and Narwhal, see [v1.4.1](https://github.com/mathiasbynens/punycode.js/releases/tag/v1.4.1).
|
||
|
||
## Installation
|
||
|
||
Via [npm](https://www.npmjs.com/):
|
||
|
||
```bash
|
||
npm install punycode --save
|
||
```
|
||
|
||
In [Node.js](https://nodejs.org/):
|
||
|
||
> ⚠️ Note that userland modules don't hide core modules.
|
||
> For example, `require('punycode')` still imports the deprecated core module even if you executed `npm install punycode`.
|
||
> Use `require('punycode/')` to import userland modules rather than core modules.
|
||
|
||
```js
|
||
const punycode = require('punycode/');
|
||
```
|
||
|
||
## API
|
||
|
||
### `punycode.decode(string)`
|
||
|
||
Converts a Punycode string of ASCII symbols to a string of Unicode symbols.
|
||
|
||
```js
|
||
// decode domain name parts
|
||
punycode.decode('maana-pta'); // 'mañana'
|
||
punycode.decode('--dqo34k'); // '☃-⌘'
|
||
```
|
||
|
||
### `punycode.encode(string)`
|
||
|
||
Converts a string of Unicode symbols to a Punycode string of ASCII symbols.
|
||
|
||
```js
|
||
// encode domain name parts
|
||
punycode.encode('mañana'); // 'maana-pta'
|
||
punycode.encode('☃-⌘'); // '--dqo34k'
|
||
```
|
||
|
||
### `punycode.toUnicode(input)`
|
||
|
||
Converts a Punycode string representing a domain name or an email address to Unicode. Only the Punycoded parts of the input will be converted, i.e. it doesn’t matter if you call it on a string that has already been converted to Unicode.
|
||
|
||
```js
|
||
// decode domain names
|
||
punycode.toUnicode('xn--maana-pta.com');
|
||
// → 'mañana.com'
|
||
punycode.toUnicode('xn----dqo34k.com');
|
||
// → '☃-⌘.com'
|
||
|
||
// decode email addresses
|
||
punycode.toUnicode('джумла@xn--p-8sbkgc5ag7bhce.xn--ba-lmcq');
|
||
// → 'джумла@джpумлатест.bрфa'
|
||
```
|
||
|
||
### `punycode.toASCII(input)`
|
||
|
||
Converts a lowercased Unicode string representing a domain name or an email address to Punycode. Only the non-ASCII parts of the input will be converted, i.e. it doesn’t matter if you cal |