chocolateboy
chocolateboy
Entering the following causes jay to exit immediately (without an error): ```javascript p = new Promise(() => {}) ``` It works fine in node's REPL: ```javascript p = new Promise(()...
Re-opening this to ensure it doesn't get overlooked. Test case copied from https://github.com/jorgebucaran/colorette/pull/41#issuecomment-629703746. Fixed in https://github.com/jorgebucaran/colorette/pull/41, but the patch was [modified](https://github.com/jorgebucaran/colorette/pull/41#issuecomment-629694027), which introduced the new bug. In the current version...
I'm trying to migrate away from [another jQuery plugin](https://github.com/eclecto/jQuery-onMutate), which has [several](https://github.com/eclecto/jQuery-onMutate/issues/18) [bugs](https://github.com/chocolateboy/userscripts/commit/9a547f919e862468c8f7af86780dee561c53a2b2), to this, which doesn't have either of those bugs. :+1: But, looking through the code, there appears...
Please allow spaces to be used around the pipe operator (`|`). They make filters much easier to read. **Before**: ```less div.movies@ { .title { $title }; .date { $date };...
I'm trying to emulate Parcel's config-file resolution[[1]](https://github.com/parcel-bundler/parcel/blob/1.x/src/Resolver.js#L417-L429)[[2]](https://github.com/parcel-bundler/parcel/blob/1.x/src/utils/config.js#L12-L32) (to work around the fact that it [no longer works synchronously](https://github.com/parcel-bundler/parcel/issues/3566)), which walks up from an asset's directory to either the filesystem root...
(There are some [similar](https://github.com/Schniz/fnm/issues/109)-sounding [issues](https://github.com/Schniz/fnm/issues/80), but they're talking about *sharing* global packages across different versions rather than installing them per-version.) It'd be nice to be able to automatically (re-)install a...
**OS**: Linux (Arch) | **fnm**: v1.22.8 The output of `fnm env` on my system (Bash v5.0.18) prepends its bin directory to the `$PATH`, e.g.: ``` export PATH="/tmp/fnm_multishell_123_456/bin":$PATH ``` I know...
This PR: - replaces `self` with `globalThis` - makes detection of CommonJS environments more robust [`globalThis`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis) is the official way to refer to the global scope and is supported by...
## Announcements * [Greasemonkey 4 For Users](https://www.greasespot.net/2017/09/greasemonkey-4-for-users.html) * [Greasemonkey 4 For Script Authors](https://www.greasespot.net/2017/09/greasemonkey-4-for-script-authors.html) ## Helpers * [greasemonkey/gm4-polyfill](https://github.com/greasemonkey/gm4-polyfill) * [StigNygaard/GMCommonAPI.js](https://github.com/StigNygaard/GMCommonAPI.js)