1.0.0 • Published 3 years ago

convert-chinese-chars v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

中文简体、繁体转换工具, 支持浏览器端和 Node 端.

中文簡體、繁體転換工具, 支持瀏覧器端和 Node 端.

如何使用

Node 环境

$ npm i --save convert-chinese-chars
const { toTraditional, toSimplified } = require('convert-chinese-chars');

// 简体中文 => 繁体中文
console.log(toTraditional('中华人民共和国')); // 输出: 中華人民共和國

// 繁体中文 => 简体中文
console.log(toSimplified('中華人民共和國')); // 输出: 中华人民共和国

浏览器环境

注: 因为内置词库的原因, 体积比较大, 大概 85kb.

使用 script 标签加载 build/convert-chinese-chars.min.js 后, 调用 window.ConvertChineseChars 即可, 示例代码如下:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Demo</title>
    <script src="./build/convert-chinese-chars.min.js"></script>
  </head>
  <body>
    <script>
      const Converter = window.ConvertChineseChars;

      // 简体中文 => 繁体中文
      console.log(Converter.toTraditional('中华人民共和国')); // 输出: 中華人民共和國

      // 繁体中文 => 简体中文
      console.log(Converter.toSimplified('中華人民共和國')); // 输出: 中华人民共和国
    </script>
  </body>
</html>

声明

词库来自funNLP

License

MIT