New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

unenv-nightly

Package Overview
Dependencies
Maintainers
1
Versions
167
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unenv-nightly - npm Package Compare versions

Comparing version 1.10.0-1717522572.87b9352 to 1.10.0-1717570085.26124fb

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc