UNPKG

@iicoding/utils

Version:

Browser 端 - 类型判断 - 类似 koa 的异步compose - sleep - 扩展对象属性 - 扩展 storage 对象功能

11 lines (10 loc) 293 B
/** * 首字母大写 * @param str 待转换的字符串 */ export declare const capitalize: (str: string) => string; /** * 字符串数组转换为数字数组,且过滤掉 未 NaN 的项 * @param strArr 目标 str */ export declare const str2NumberArr: (strArr: string) => number[];