Skip to content

Commit 4933cee

Browse files
committed
Remove use strict
1 parent 2c51738 commit 4933cee

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

  • extensions/vscode-web-playground/src

extensions/vscode-web-playground/src/memfs.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
'use strict';
76
import {
87
CancellationToken,
98
Disposable,
@@ -124,8 +123,6 @@ export class MemFS implements FileSystemProvider, FileSearchProvider, TextSearch
124123
this.writeFile(Uri.parse(`memfs:/sample-folder/xyz/UPPER.txt`), textEncoder.encode('UPPER'), { create: true, overwrite: true });
125124
this.writeFile(Uri.parse(`memfs:/sample-folder/xyz/upper.txt`), textEncoder.encode('upper'), { create: true, overwrite: true });
126125
this.writeFile(Uri.parse(`memfs:/sample-folder/xyz/def/foo.md`), textEncoder.encode('*MemFS*'), { create: true, overwrite: true });
127-
128-
129126
}
130127

131128
root = new Directory(Uri.parse('memfs:/'), '');

0 commit comments

Comments
 (0)