mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 04:09:28 +00:00
💄
This commit is contained in:
@@ -22,9 +22,7 @@ type DarwinDocumentType = {
|
||||
};
|
||||
|
||||
function isDocumentSuffix(str?: string): str is DarwinDocumentSuffix {
|
||||
return str != undefined && (
|
||||
str === 'document' || str === 'script' || str === 'file' || str === 'source code'
|
||||
);
|
||||
return str === 'document' || str === 'script' || str === 'file' || str === 'source code';
|
||||
}
|
||||
|
||||
const root = path.dirname(path.dirname(__dirname));
|
||||
|
||||
Reference in New Issue
Block a user