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 26.0.4 to 26.0.6

11

install.js

@@ -12,3 +12,2 @@ /**

var cldrDownloader = require("cldr-data-downloader");
var exit = process.exit;
var path = require("path");

@@ -31,6 +30,12 @@ var urls = require("./urls");

if (error) {
console.error("Whops", error.message);
exit(1);
if (/E_ALREADY_INSTALLED/.test(error.code)) {
error.message = error.message.replace(/Use `options.*/, "Use -f to " +
"override.");
return console.log(error.message);
} else {
console.error("Whops", error.message);
process.exit(1);
}
}
}
);
{
"name": "cldr-data",
"version": "26.0.4",
"version": "26.0.6",
"keywords": [

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

@@ -54,4 +54,15 @@ # Npm's cldr-data

### Locale coverage
By default, the locale coverage installed is `core`, which Unicode defines as
the top tier languages and is equivalent to the `json.zip` content. If you need
full locale coverage, use `CLDR_COVERAGE` environment variable to modify the
installation behavior. For example:
```
$ CLDR_COVERAGE=full npm install
```
## License
MIT © [Rafael Xavier de Souza](http://rafael.xavier.blog.br)
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