UNPKG

259 BJavaScriptView Raw
1/**
2 * 生成错误信息
3 * @param {String} msg
4 * @returns {String}
5 */
6const errorMsg = (type, msg) => {
7 if (typeof type === 'string' && typeof msg === 'string')
8 return `${type}::${msg}`
9 return type
10}
11
12module.exports = errorMsg