Mathieu Hofman
Mathieu Hofman
I can't seem to get this resolver to work with other resolvers, in particular [bower-npm-resolver](https://github.com/mjeanroy/bower-npm-resolver). ``` npm install --save-dev bower bower-npm-resolver bower-shrinkwrap-resolver ``` .bowerrc: ``` { "resolvers": [ "bower-npm-resolver", "bower-shrinkwrap-resolver"...
### Description of the issue I understand that SyncthingNative is capable of doing a watch through inotify on shared folders, but that requires the engine to be running, which keeps...
**Browser + Version:** Chrome 64 **CustomUI version:** 20180117 **Home Assistant release (`hass --version`):** 0.61.1 **Problem-relevant `configuration.yaml` entries:** ```yaml input_boolean.tie_nest_away_mode_to_phones_presence: custom_ui_state_card: state-card-custom-ui group: group.climate: hidden: true ``` I'd like to show...
I'd like to use `jsvu` to help run some tests on various engines for a package I'm writing. For that I wouldn't install `jsvu` globally but instead would have it...
https://github.com/tc39/ecma262/pull/2600 reached consensus at the last plenary. It updates Async-from-Sync Iterator objects to close the wrapped iterator in cases where the async wrapper is considered to be done, but the...
The SES shim replaces the global `eval` in the start compartment with a "safe" evaluator. That causes any direct eval usage in the start compartment to in fact become indirect....
I propose that `eventual-send` should wrap errors when the target resolution results in a throw. It would raise a new `TypeError` with the appropriate message (e.g. `Cannot send to rejected...
Both `await` and `Promise.resolve` use the spec [`PromiseResolve`](https://tc39.es/ecma262/#sec-promise-resolve) operation. If the value is a native promise (recognized through an [`IsPromise`](https://tc39.es/ecma262/#sec-ispromise) brand-check), the operation does a `Get(promise, "constructor")`, which can trigger...
#1025 introduced generated `.d.ts` files to enable types without requiring to parse JSDoc, which is a problem when consumed through NPM. However to keep ["Go To Implementation" somewhat working](https://github.com/microsoft/TypeScript/issues/6209), we...
@erights's intention for `Promise.resolve` was that it'd be safe against evil promises and callbacks. To quote https://github.com/endojs/endo/pull/1126: > My original intention on tc39 was that an expression like > >...