UNPKG

review-edit-auto

Version:

scan your project, only review edited code in given time-range automatic

9 lines (8 loc) 177 B
/** * 提取文件名称 * @param {*} filePath */ function getFileName(filePath: string) { return filePath.replace(process.cwd(), '').trim(); } export default getFileName;