Package Exports
- @lazy-cjk/static-build-zh-convert
- @lazy-cjk/static-build-zh-convert/data/table_cn2tw.debug
- @lazy-cjk/static-build-zh-convert/data/table_cn2tw.debug.safe
- @lazy-cjk/static-build-zh-convert/data/table_tw2cn.debug
- @lazy-cjk/static-build-zh-convert/data/table_tw2cn.debug.safe
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@lazy-cjk/static-build-zh-convert) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
README
繁簡轉換對應表
- BASE 代表 可以簡單透過 javascript split 進行字串分割
- UNICODE 代表需要透過支援 Unicode 進行字串分割(例如 uni-string )
- SAFE 代表於 簡轉繁 時,盡量不去取代已經存在於繁體中的字(至於繁轉簡則... 沒必要)
可透過以下代碼取得相同資料
import { table_tw2cn, table_cn2tw } from 'cjk-conv/lib/zh/convert';
import { tableCn2TwDebug, tableTw2CnDebug } from 'cjk-conv/lib/zh/convert/min';
繁轉簡 table_tw2cn
- JSON: table_tw2cn.json
- BASE: base.from / base.to
- UNICODE: unicode.from / unicode.to
- SAFE: safe.from / safe.to
簡轉繁 table_cn2tw
- JSON: table_cn2tw.json
- BASE: base.from / base.to
- UNICODE: unicode.from / unicode.to
- SAFE: safe.from / safe.to