@anlib/utils
v0.1.4
Published
An 的常用工具库
Downloads
6
Readme
an 的常用函数库
buildDate
: 构建日期version
: 构建版本camelize
: 驼峰命名转换capitalize
: 首字母大写snakeCase
: 蛇形命名转换dislodgeDouble
: 去除JSON
数据的key的双引号sleep
: 在async
环境下的休眠函数debounce
: 防抖throttle
: 节流cached
: 缓存纯函数compose
: 组合函数getType
: 通用判断类型getDate
: 获取日期getDirname
: 获取__dirname
getFilename
: 获取__filename
fileReaderFile
: 文件读取execShell
: 执行shell
命令genExcel
: 生成excel
parseExcelToJson
: 解析excel
文件或excel
文件地址为json
writeFile
: 文件写入
// commonjs
const utils = require("@anlib/utils");
// esmodule
import * as utils from "@anlib/utils";
// browser umd
import "@anlib/utils/lib/bundle.browser.js";
console.log(anUtils);