Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-31 | fix: invalid blob type (#4536) | crowlKats | |
2020-03-30 | console: print promise details (#4524) | Michał Sabiniarz | |
2020-03-30 | console: iterable printing improvements (#4472) | Michał Sabiniarz | |
1. Array elements are now grouped the same as in Node.js 2. Limit to 100 (Node.js default) elements to display in iterable 3. Print each element in new line if excessing max line length (same as in Node.js) 4. Print length of the TypedArray 5. Print information about empty items in Array | |||
2020-03-28 | Update to Prettier 2 and use ES Private Fields (#4498) | Kitson Kelly | |
2020-03-25 | refactor: rename ConsoleOptions to InspectOptions (#4493) | Chris Knight | |
2020-03-24 | console: replace object abbreviation with line breaking (#4425) | Michał Sabiniarz | |
2020-03-20 | Add require-await lint rule (#4401) | Samrith Shankar | |
2020-03-19 | perf: Optimize TextEncoder and TextDecoder (#4430) | Bartek Iwańczuk | |
* add tests for "Deno.core.encode" and "Deno.core.decode" for empty inputs * use "Deno.core.encode" in "TextEncoder" * use "Deno.core.decode" in "TextDecoder" * remove "core_decode" and "core_encode" benchmarks | |||
2020-03-19 | Simplify timer with macrotask callback (#4385) | Kevin (Kun) "Kassimo" Qian | |
2020-03-17 | feat: fetch should accept a FormData body (#4363) | crowlKats | |
2020-03-16 | fix: fetch closes unused body (#4393) | Bartek Iwańczuk | |
This commit makes sure that "httpBody" resource is closed in case of redirections in fetch API. | |||
2020-03-16 | console: Symbol.toStringTag and display Object symbol entries (#4388) | Kevin (Kun) "Kassimo" Qian | |
2020-03-16 | refactor: add no-return-await lint rule (#4384) | Bartek Iwańczuk | |
2020-03-13 | Remove doc strings from cli/js TS files (#4329) | crowlKats | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-03-11 | reorg: remove dispatch.ts, move signals, factor out web utils (#4316) | Bartek Iwańczuk | |
- moves signal definition from "cli/js/process.ts" to "cli/js/signals.ts" - removes "cli/js/dispatch.ts" - removes "cli/js/types.ts" - moves web specific utilities to "cli/js/web/util.ts" | |||
2020-03-11 | reorg: cli/js/compiler/, move more API to cli/js/web/ (#4310) | Bartek Iwańczuk | |
- moves compiler implementation to "cli/js/compiler/" directory - moves more APIs to "cli/js/web": * "console.ts" * "console_table.ts" * "performance.ts" * "timers.ts" * "workers.ts" - removes some dead code from "cli/js/" | |||
2020-03-10 | refactor: Cleanup options object parameters (#4296) | Nayeem Rahman | |
2020-03-09 | reorg: move JS ops implementations to cli/js/ops/, part 2 (#4283) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - io - process - worker_host - web_worker - plugins - timers - signal - permissions | |||
2020-03-08 | reorg: move JS ops implementations to cli/js/ops/, part 1 (#4264) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - compiler - dispatch_json - dispatch_minimal - errors - fetch - fs_events - os - random - repl - resources - runtime_compiler - runtime - tty | |||
2020-03-05 | move Web APIs to cli/js/web/ | Bartek Iwańczuk | |