Replies: 6 comments 2 replies
-
|
cc @michaelfig |
Beta Was this translation helpful? Give feedback.
-
|
I have a plan (cf "the eventual-send API redesign slides") where the guts of |
Beta Was this translation helpful? Give feedback.
-
|
In this case I'm wondering if we couldn't get away with a |
Beta Was this translation helpful? Give feedback.
-
Ah, yes! I didn't see the forest for the trees. I was thinking that the script was importing other modules that themselves import
|
Beta Was this translation helpful? Give feedback.
-
|
Minimal version of track-turns.js without any debugging support: /**
* @template {((...args: any[]) => any) | undefined}T
* @param {T} funcs
* @returns {T}
*/
export const trackTurns = funcs => funcs; |
Beta Was this translation helpful? Give feedback.
-
|
(Could someone explain the advantage of discussions over issue threads? I ask because there is a huge disadvantage: the absence of bidirectional linking.) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working on a core-eval that's essentially one 20 line function. With comments and such, 2415 bytes. But because it imports
E, the bundle is 10x that size: 33,849 bytes:I'd rather not spend those bytes on
message-breakpoints.jsandenv-options.js. I don't need them for debugging.track-turns.jsmight be important at runtime, but this thing is pretty simple, so I'd like to have the option to do without that too.To what extent is this feasible?
cc @kriskowal @erights
Beta Was this translation helpful? Give feedback.
All reactions