Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cldr-data

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cldr-data - npm Package Compare versions

Comparing version 27.0.9 to 27.0.10

14

install.js

@@ -25,4 +25,14 @@ /**

} catch(error) {
// Better safe than sorry.
isNpm3 = true;
// child_process.execSync is not available on Node v0.10
// fortunately, we can use ENV variables set by npm do detect its version
// npm_config_user_agent: 'npm/2.15.1 node/v0.10.46 darwin x64'
// npm_config_user_agent: 'npm/3.10.3 node/v6.3.0 darwin x64'
// Note that users can override the value of this config option,
// therefore it's safer to use this method only as a fall-back option.
if (/^npm\/2\./.test(process.env.npm_config_user_agent)) {
isNpm3 = false;
} else {
// Better safe than sorry.
isNpm3 = true;
}
}

@@ -29,0 +39,0 @@

2

package.json
{
"name": "cldr-data",
"version": "27.0.9",
"version": "27.0.10",
"keywords": [

@@ -5,0 +5,0 @@ "unicode",

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