@yoooloo42/bean 1.0.12 → 1.0.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoooloo42/bean",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -87,7 +87,7 @@ function vercode6(length = 6) {
87
87
  */
88
88
  function vercode6N(length = 6) {
89
89
  // 定义所有允许的字符集 (数字 0-9, 小写字母 a-z, 大写字母 A-Z)
90
- const characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
90
+ const characters = '0123456789';
91
91
  const charactersLength = characters.length;
92
92
 
93
93
  let result = '';