Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
formatjs-extract-cldr-data
Advanced tools
Utility library that extracts the CLDR data that's needed by the FormatJS libraries.
Utility library that extracts the CLDR data that's needed by the FormatJS libraries.
This package offers a function to extract the CLDR data needed by the FormatJS libraries via its default export. The data is returned as an object keyed by locale language tags; e.g., "en-US"
. This package leverages the fact that language tags are hierarchical and will only return the unique, de-duplicated data that's needed.
The following example shows how the locale hierarchy is used to return the unique data:
var extractData = require('formatjs-extract-cldr-data');
var data = extractData({
locales : ['en-US', 'en-GB'],
pluralRules: true
});
console.log(data);
// => { en: { locale: 'en', pluralRuleFunction: [Function] } }
Since the pluralRuleFunction
for the root locale "en"
is the same as used in the locales: "en-US"
and "en-GB"
, it is returned.
The data object returned from this package will have the following shape, here's the data for English:
{ en:
{ locale: 'en',
pluralRuleFunction: [Function],
fields:
{ year: [Object],
month: [Object],
day: [Object],
hour: [Object],
minute: [Object],
second: [Object] } } }
Each field has the following shape, here's the data for English year
:
{ displayName: 'Year',
relative: { '0': 'this year', '1': 'next year', '-1': 'last year' },
relativeTime:
{ future: { one: 'in {0} year', other: 'in {0} years' },
past: { one: '{0} year ago', other: '{0} years ago' } } }
In order for any data to be returned, the value true
must be assigned to either the pluralRules
and/or relativeFields
options. By default, data will be returned for all locales in the CLDR; to limit which locales, assign an array of them to the locales
option.
locales
An optional array of locales to extract data for, specified as string language tags. By default, data will be returned for all locales in the CLDR.
pluralRules
Boolean for whether or not pluralRuleFunction
s should be extracted for the specified locales
. These functions will support both cardinal and ordinal pluralization. These functions are generated using the make-plural project.
relativeFields
Boolean for whether or not fields
should be extracted for the specified locales
. The field data that's extracted is limited to the data required to support FormatJS' relative time formatting features, and it's organized in the shape described above.
The CLDR version and data used by this package can be easily updated by running the Grunt task:
$ grunt update-cldr-data
Running this task will download the latest version of the CLDR's official JSON files and copy the files required by this package into the data/
directory.
This software is free to use under the Yahoo Inc. BSD license. See the LICENSE file for license text and copyright information.
The CLDR data contained in this packaged is licensed under the Apache, ICU, and Unicode licenses. See the CLDR license files for their license text and copyright information.
FAQs
Utility library that extracts the CLDR data that's needed by the FormatJS libraries.
The npm package formatjs-extract-cldr-data receives a total of 1,482 weekly downloads. As such, formatjs-extract-cldr-data popularity was classified as popular.
We found that formatjs-extract-cldr-data demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.