UNPKG

@vensst/cli

Version:

快速搭建前端项目脚手架

14 lines (13 loc) 200 B
/** * @name: index * @description:index.js * @date: 2022/10/18 14:38 * @author: yf_hu */ // 转小写 const lowerCase = (str) => { return str.toLowerCase() } module.exports = { lowerCase }