https://github.com/bramstein/unicode-data-parser
https://github.com/bramstein/unicode-data-parser
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bramstein/unicode-data-parser
- Owner: bramstein
- Created: 2013-02-23T19:12:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T10:46:58.000Z (almost 4 years ago)
- Last Synced: 2025-08-23T04:01:07.759Z (10 months ago)
- Language: JavaScript
- Size: 200 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Unicode Data parser
This is a simple utility to parse the data files provided by the Unicode Consortium.
## Installation
$ npm install unicode-data-parser
## Usage
You can either use the supplied binary which will output a JSON representation of the data, or include the parser directly into your code:
$ unicode-data-parser LineBreak.txt
or:
var parser = require('unicode-data-parser');
parser.parseFile('LineBreak.txt', function (err, data) {
// Do something with `data`
});
## License
The Unicode Data parser utility is licensed under the new BSD license.