https://github.com/yxw007/jscommonutils
JS 常用公共模块
https://github.com/yxw007/jscommonutils
Last synced: 4 months ago
JSON representation
JS 常用公共模块
- Host: GitHub
- URL: https://github.com/yxw007/jscommonutils
- Owner: yxw007
- Created: 2021-02-28T15:32:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-04T03:03:31.000Z (over 4 years ago)
- Last Synced: 2025-02-17T16:05:45.435Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# js_common_utils
前端开发:常规工具库
# 包含内容:
- ByteUtils : 基本类型与字节相关转换
- CharUtils : 字符转换相关处理
- GzipUtils : gzip 压缩 和 解压# 安装
```
npm install js_common_utils
```# 使用
- 浏览器
```
import {charUtils, byteUtils, gzipUtils} from 'js_common_utils'
```
- Node.js```
var {charUtils, byteUtils, gzipUtils} = require('js_common_utils');
```