This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ❯ cargo run -- task | |
| Compiling deno v1.19.2 (/Users/ib/dev/deno/cli) | |
| Finished dev [unoptimized + debuginfo] target(s) in 20.58s | |
| Running `target/debug/deno task` | |
| Available tasks: | |
| - async | |
| sleep 1 && echo 2 & | |
| - boolean_list | |
| echo 1 && false || echo 2 | |
| - env_var_substitution |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addEventListener("fetch", (event) => { | |
| throw new Error("boom!"); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addEventListener("fetch", (event) => { | |
| while (true) {} | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addEventListener("fetch", (event) => { | |
| new ArrayBuffer(1 << 30); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******/ (() => { // webpackBootstrap | |
| /******/ "use strict"; | |
| /******/ var __webpack_modules__ = ({ | |
| /***/ "./src/base.ts": | |
| /*!*********************!*\ | |
| !*** ./src/base.ts ***! | |
| \*********************/ | |
| /***/ (function(__unused_webpack_module, exports, __webpack_require__) { |
OlderNewer