elegant-tools-js 1.0.1 → 1.0.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 +13 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,19 +2,19 @@
2
2
 
3
3
  一个强大的 TypeScript 工具库,提供浏览器指纹识别、防抖、节流等常用工具函数。
4
4
 
5
- ##特性
5
+ ## 特性
6
6
 
7
- - 🔍 **浏览器指纹识别** - 基于多维度特征生成唯一标识
8
- -**防抖 & 节流** - 优化事件处理性能
9
- - 📦 **深拷贝** - 完整的对象克隆支持
10
- - 🆔 **唯一ID生成** - 时间戳+随机数组合
11
- - 📅 **日期格式化** - 灵活的日期格式化
12
- - 🔄 **数组操作** - 智能去重工具
13
- - 🔗 **URL工具** - 查询字符串解析与生成
14
- - 📱 **设备检测** - 移动设备识别
15
- - 🎲 **随机工具** - 随机数与字符串生成
7
+ - **浏览器指纹识别** - 基于多维度特征生成唯一标识
8
+ - **防抖 & 节流** - 优化事件处理性能
9
+ - **深拷贝** - 完整的对象克隆支持
10
+ - **唯一ID生成** - 时间戳+随机数组合
11
+ - **日期格式化** - 灵活的日期格式化
12
+ - **数组操作** - 智能去重工具
13
+ - **URL工具** - 查询字符串解析与生成
14
+ - **设备检测** - 移动设备识别
15
+ - **随机工具** - 随机数与字符串生成
16
16
 
17
- ## 📦 安装
17
+ ## 安装
18
18
 
19
19
  ```bash
20
20
  npm install elegant-tools-js
@@ -22,7 +22,7 @@ npm install elegant-tools-js
22
22
  yarn add elegant-tools-js
23
23
  ```
24
24
 
25
- ## 🚀 快速开始
25
+ ## 快速开始
26
26
 
27
27
  ### ES6+ 模块
28
28
 
@@ -78,7 +78,7 @@ const { Utils } = require('elegant-tools-js');
78
78
  // 使用方式与 ES6+ 模块相同
79
79
  ```
80
80
 
81
- ## 📚 主要 API
81
+ ## 主要 API
82
82
 
83
83
  ### 浏览器指纹
84
84
 
@@ -143,12 +143,3 @@ Utils.stringifyQuery(params)
143
143
  Utils.isMobile(): boolean
144
144
  ```
145
145
 
146
- ## 📄 许可证
147
-
148
- MIT
149
-
150
- ## 🤝 贡献
151
-
152
- 欢迎提交 Issue 和 Pull Request!
153
-
154
- 更多文档请查看 [DEVELOPMENT.md](./DEVELOPMENT.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elegant-tools-js",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A powerful TypeScript utility library with browser fingerprinting, debouncing, throttling, and more",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",