UNPKG

touhou-tagger

Version:

从 THBWiki 自动填写东方 Project CD 曲目信息.

10 lines (9 loc) 322 B
export const resolvePath = async (path) => { const { resolve } = await import('path'); const { existsSync } = await import('fs'); const localSourcePath = resolve(path).replace(/\\/g, '/'); if (!existsSync(localSourcePath)) { throw new Error('路径不存在'); } return localSourcePath; };