引入
import { normalizePath, getRelativePath } from 't-comm';
// or
import { normalizePath, getRelativePath} from 't-comm/lib/path/index';
# normalizePath
描述:
格式化路径
参数:
参数名 | 描述 |
---|---|
path | 文件路径,或目录路径 |
返回:
格式化后的路径
示例
normalizePath('xxx/xxx/xxx');
normalizePath('xxx\\xxx\\xxx');
# getRelativePath(pathA, pathB)
描述:
A引用B时,拿引用路径
参数:
参数名 | 描述 |
---|---|
pathA | 路径A |
pathB | 路径B |
返回:
相对路径
示例
getRelativePath('a', 'b');
// './b'