# 快速安装
npm install @mudas/util -S
# 构建参数
默认情况下 babel-loader 不转译所有 node_modules 中的文件,因此单独指定 node_modules 需要让 babel 转译的 esm 模块
module.exports = {
transpileDependencies: [
'@mudas/*'
]
};
注意:以上为
vue.config.js
配置方法,其它构建环境请自行查阅相关文档。
# 使用示例
import {isArray} from '@mudas/util';
isArray([1, 2, 3]);
// => true
# 目录
# 数据类型工具
- boolean 布尔值工具
- number 数值工具
- string 字符串工具
- object 对象工具
- null 工具
- empty 空值工具
- array 数组工具
- function 函数工具
- file 文件内容工具
- buffer 工具
- form 表单内容工具