We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a3913 commit b7d4136Copy full SHA for b7d4136
README.md
@@ -219,7 +219,9 @@ console.log(`Hello from ${$.blue.bold("worker")}!`);
219
- **path:** Deno's `std/path` module.
220
221
```ts
222
- console.log(path.basename(import.meta.url));
+ const basename = path.basename(import.meta.url);
223
+ const options: path.GlobToRegExpOptions = { os: "linux" };
224
+ const regex: RegExp = path.globToRegExp("*.ts", options);
225
```
226
227
- **io:** Deno's `std/io` module.
0 commit comments