parse-pinyin 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -88,7 +88,7 @@ console.log(toPinyin('中'));
88
88
 
89
89
  // 包含非汉字字符的字符串
90
90
  console.log(toPinyin('Hello, 世界'));
91
- // 输出: ['H', 'e', 'l', 'l', 'o', ',', ' ', ['shì'], ['jiè']]
91
+ // 输出: ['H', 'e', 'l', 'l', 'o', ',', ' ', 'shì', 'jiè']
92
92
  ```
93
93
 
94
94
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-pinyin",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "一个高效的汉字拼音查询库,兼容浏览器和nodejs,提供ESM、commonjs、iife格式的构建,支持拼音反查",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",