https://github.com/moznion/neologd-normalizer-js
A normalizer of neologd for JavaScript
https://github.com/moznion/neologd-normalizer-js
Last synced: 11 months ago
JSON representation
A normalizer of neologd for JavaScript
- Host: GitHub
- URL: https://github.com/moznion/neologd-normalizer-js
- Owner: moznion
- License: apache-2.0
- Created: 2016-12-11T08:44:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T01:26:28.000Z (over 5 years ago)
- Last Synced: 2025-05-26T20:53:43.634Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/neologd-normalizer
- Size: 156 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
neologd-normalizer-js [](https://badge.fury.io/js/neologd-normalizer) [](https://travis-ci.org/moznion/neologd-normalizer-js)
==
A normalizer of neologd for JavaScript.
Rule
--
[https://github.com/neologd/mecab-ipadic-neologd/wiki/Regexp.ja](https://github.com/neologd/mecab-ipadic-neologd/wiki/Regexp.ja)
Synopsis
--
```js
import NeologdNormalizer from "neologd-normalizer";
NeologdNormalizer.normalize(" PRML 副 読 本 "); // => "PRML副読本"
NeologdNormalizer.normalize("南アルプスの 天然水- Sparking* Lemon+ レモン一絞り"); // => 南アルプスの天然水-Sparking*Lemon+レモン一絞り
```
How to build
--
```bash
$ npm run build
```
How to run test
--
```bash
$ npm test
```
Benchmark
--
### Run benchmark scirpt
```bash
$ npm run bench
```
### Result
Benchmark script is [here](/author/bench.es).
```
$ npm run bench
Bench x 6,247 ops/sec ±1.03% (85 runs sampled)
```
(Node: v6.9.2, Machine: MacBook Pro Retina, 15-inch, Early 2013 2.7 GHz Intel Core i7)
License
--
Copyright 2016 moznion ()
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.