unenv-nightly
Advanced tools
Comparing version 1.10.0-1717522572.87b9352 to 1.10.0-1717570085.26124fb
{ | ||
"name": "unenv-nightly", | ||
"version": "1.10.0-1717522572.87b9352", | ||
"version": "1.10.0-1717570085.26124fb", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "repository": "unjs/unenv", |
@@ -64,2 +64,19 @@ /** | ||
declare const toASCII: (input: string) => string; | ||
/** | ||
* A string representing the current Punycode.js version number. | ||
* @memberOf punycode | ||
* @type String | ||
*/ | ||
declare const version = "2.3.1"; | ||
/** | ||
* An object of methods to convert from JavaScript's internal character | ||
* representation (UCS-2) to Unicode code points, and back. | ||
* @see <https://mathiasbynens.be/notes/javascript-encoding> | ||
* @memberOf punycode | ||
* @type Object | ||
*/ | ||
declare const ucs2: { | ||
decode: typeof ucs2decode; | ||
encode: (codePoints: number[]) => string; | ||
}; | ||
/** Define the public API */ | ||
@@ -77,3 +94,3 @@ declare const punycode: { | ||
}; | ||
export { ucs2decode, ucs2encode, decode, encode, toASCII, toUnicode }; | ||
export { version, ucs2, ucs2decode, ucs2encode, decode, encode, toASCII, toUnicode, }; | ||
export default punycode; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
777365
23034