unicode-property-value-aliases-ecmascript v2.2.0
unicode-property-value-aliases-ecmascript 
unicode-property-value-aliases-ecmascript offers Unicode property value alias mappings in an easy-to-consume JavaScript format.
It only contains the Unicode property names and values that are supported in ECMAScript RegExp property escapes.
It’s based on Unicode’s PropertyValueAliases.txt.
Installation
To use unicode-property-value-aliases-ecmascript programmatically, install it as a dependency via npm:
$ npm install unicode-property-value-aliases-ecmascriptThen, require it:
const propertyValueAliases = require('unicode-property-value-aliases-ecmascript');Usage
This module exports a Map object of which the keys are canonical property names and the values are Maps from property value aliases to canonical property value names. The most common usage is to convert a property value alias to its canonical form:
propertyValueAliases.get(property).get(propertyValue)Examples:
propertyValueAliases.get('General_Category').get('L')
// → 'Letter'
propertyValueAliases.get('Script').get('Aghb')
// → 'Caucasian_Albanian'
propertyValueAliases.get('Script_Extensions').get('Aghb')
// → 'Caucasian_Albanian'For maintainers
How to publish a new release
On the
mainbranch, bump the version number inpackage.json:npm version patch -m 'Release v%s'Instead of
patch, useminorormajoras needed.Note that this produces a Git commit + tag.
Push the release commit and tag:
git push && git push --tagsOur CI then automatically publishes the new release to npm.
Author
| Mathias Bynens |
License
unicode-property-value-aliases-ecmascript is available under the MIT license.