UNPKG

@hosoft/restful-api-framework

Version:

Base framework of the headless cms HoServer provided by http://helloreact.cn

14 lines (11 loc) 271 B
const { v4: uuidV4 } = require('uuid') const wrapper = { capitalizeFirstLetter(str) { if (!str) return '' return str.charAt(0).toUpperCase() + str.slice(1) }, getTempFile() { return uuidV4() + '.tmp' } } module.exports = wrapper