aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/console-log.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/console-log.js')
0 files changed, 0 insertions, 0 deletions
colspan='5' class='logmsg'> These function are confusingly named. `btoa` converts "Binary" to Ascii by encoding the input using base64. `atob` reverses that process by base64 decoding the Ascii input into a "Binary" output. The names come from the Unix utilities with the same names, which "converts a binary file to ascii for transmission over a telephone line" (https://www.unix.com/man-page/minix/1/btoa/) See: - https://developer.mozilla.org/en-US/docs/Web/API/atob - https://developer.mozilla.org/en-US/docs/Web/API/btoa - https://html.spec.whatwg.org/multipage/webappapis.html#dom-btoa-dev Note: the actual implementation of `btoa` and `atob` are correct, but the docs were backwards. 2022-07-16fix/clean-up-bun-error (#753)Gravatar John Daly 4-101/+54 * Fixing TypeScript errors in bun-error package * Fixing import path * Removing unused 'isClient' prop from AsyncSourceLines * PR feedback 2022-07-15[parser] Fix symbol collision with requireGravatar Jarred Sumner 7-40/+63 Fixes https://github.com/oven-sh/bun/issues/674 Fixes https://github.com/oven-sh/bun/issues/382 2022-07-15Add a TLA testGravatar Jarred Sumner 2-0/+11 2022-07-15[bun.js] Fix non-ascii latin1 string handling in console.logGravatar Jarred Sumner 7-73/+175 Closes https://github.com/oven-sh/bun/issues/738 Closes https://github.com/oven-sh/bun/issues/737 2022-07-15minor edit: Makefile (#672)Gravatar Travis Pulley 1-1/+7 * minor edit: Makefile Fixed a suggested command when ninja isn't found to the correct package name * Makefile: minor edit Ninja build has different names in different package managers. This handles both known instances. * Makefile: ninja package name suggestion When checking requirements, ninja build has a different name for brew and ubuntu/debian. This handles both. 2022-07-15fix(README): Remove unused troubleshooting link (#736)Gravatar Finn R. Gärtner 1-1/+0