Isaac Sukin

Results 7 issues of Isaac Sukin

The last release, 1.1.0, was in 2017. There have been quite a few updates since then. Any chance we can get a version bump?

Starting in Chrome 38, it is possible to execute code in child frames using the options parameter of [`chrome.devtools.inspectedWindow.eval()`](https://developer.chrome.com/extensions/devtools_inspectedWindow#method-eval) to specify a target frame by its URL. Getting target frame...

This library currently uses `window.requestAnimationFrame` if available and falls back to `setTimeout` otherwise. The upcoming WebVR API will use `display.requestAnimationFrame` to schedule frames on attached VR displays. This library should...

Currently, when `MainLoop.start()` is called, `draw()` is called to render the initial state before any updates occur. This behavior could lead to users writing buggy code based on the reasonable...

Fixes this security advisory: https://github.com/advisories/GHSA-xvch-5gv4-984h I reviewed the commits between minimist versions and didn't see anything that looked like it would cause compatibility issues with the one place this dependency...

The [declaration merging page](https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Declaration%20Merging.md) describes a system that I would expect to work like this: ```ts // node_modules/@types/package/index.d.ts interface Foo { example(): void; } // main.ts Foo.prototype.myNewMethod = () =>...

The README says that the plugin will respect a .proselintrc file but it's not using the one that's in the same directory as the file I'm editing. Where can I...