Merge from vscode 5b9869eb02fa4c96205a74d05cad9164dfd06d60 (#5607)

This commit is contained in:
Anthony Dresser
2019-05-24 12:20:30 -07:00
committed by GitHub
parent 361ada4963
commit bcc449b524
126 changed files with 3096 additions and 2255 deletions

View File

@@ -213,10 +213,6 @@ export function symlink(target: string, path: string, type?: string): Promise<vo
return promisify(fs.symlink)(target, path, type);
}
export function readlink(path: string): Promise<string> {
return promisify(fs.readlink)(path);
}
export function truncate(path: string, len: number): Promise<void> {
return promisify(fs.truncate)(path, len);
}