Blame view

天文台pc/tianwentai-ui/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts 253 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
  /**
   * Removes everything after the last "/", but leaves the slash.
   */
  export default function stripFilename(path: string | undefined | null): string {
    if (!path) return '';
    const index = path.lastIndexOf('/');
    return path.slice(0, index + 1);
  }