normalize file name for sort
npm install @node-novel/normalizenormalize file name for sort
```
npm install @node-novel/normalize
`ts
import { normalize_strip, normalize_val } from '@node-novel/normalize';
let text = '00090_2章 不希望獨占的日子結束的面具工薪族版.txt';
console.log(normalize_strip(text));
// => 2章 不希望獨占的日子結束的面具工薪族版.txt
console.log(normalize_val(text));
// => 00090_00002章_不希望独占的日子結束的面具工薪族版.txt
``