Luke Edwards

Results 75 issues of Luke Edwards

Hi there, Impressive benchmarking system! I played with it this morning and tried to attach the TodoMVC-VanillaJS example. I managed to render it to the screen and insert most of...

Certain easing curves result in negative attribute values. This can be seen when animating the "Kitchen Sink" example. I've tried wrapping each `attr` function with `Math.max` to enforce `0` as...

Yo~! This improves performance significantly on any number slicing or parsing. It also defaults any `NaN`-derived value to `1`, the default. I also included a simple solution to #7. Custom...

One of the things I like about Webpack is that I had the able to define an entry as an array of files. Typically these are names of dependencies &...

Related to #23605 This pull request introduces the ability to set a would-be exit code for the Deno process without forcing an immediate exit, through the new `Deno.exit.code` API. -...

Support a new `Deno.exitCode` API that allows user to define the would-be exitcode of the process w/o necessarily forcing an exit that instant (liek `Deno.exit()`) This is ideal for tasks...

Hey, this looks great! Applogies if this is a silly question, I’ve essentially just started exploring the space :) Is it possible to load & call into WebCore APIs; eg...

I haven't been able to figure out how to pass value(s) to a Rust callback nor how to read an output value on the JS side from a Rust callback....

> Note: While this is problematic, we might be able to kick the can on it because of the upcoming Svelte Kit release. > Off hand, not even sure if...

Instead of requiring a new file (`object-assign-polyfill`) which modifies the `Object` prototype, what if you used [`babel-plugin-transform-object-assign`](https://www.npmjs.com/package/babel-plugin-transform-object-assign)? It will rewrite `Object.assign` into `_extends` and inline a small helper function. It's...