Mark Fulton
Mark Fulton
# Feature Request Details on advantages/disadvantages, supported platforms, etc. for the Cache API supported by browsers, etc. ## Motivation Behind Feature Cordova has some great docs for helping when making...
Sometimes the BItmovin player aggressively takes control of what content I am casting to my Chromecast device if I cast a Chrome tab (note that the issue does not happen...
I see that `getUserMedia` can specify constraints but it doesn't seem to support constraining based on `torch` (even if I send in `video: { torch: { exact: true } }`;...
I really like this and I am often pasting into a Markdown file so this is great however I also often paste into Slack or other rich text editors copying...
### Lint Name getter-return ### Code Snippet ```ts Object.defineProperty({}, "red", { get: () => {} }); Reflect.defineProperty({}, "green", { get: () => {} }); ``` ### Expected Result warnings on...
### Lint Name getter-return ### Code Snippet ```ts const x = Symbol(); Object.defineProperty(Number.prototype, x, { *get() { for (let n = 0; n < this; n++) yield n; }, });...
## Description The diff printed whenever `assertEquals` fails does not include non-index values (e.g. negatives numbers or arbitrary strings). # Steps to reproduce ```ts import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";...
I'd love to see a GitHub App example. e.g. A simple bot that replies to certain comments on a pull request, validates requests are from GitHub using a webhook secret,...
The following test passes with `deno test` but fails with `deno run -A build-node-package.ts` because `t.name` is `undefined`: ```ts import { assertEquals } from "std/testing/asserts.ts"; Deno.test("example", (t) => { assertEquals(t.name,...
I get less color with `NO_COLOR=true deno run build_script.ts` compared to `deno run build_script.ts` but it looks like some subprocesses still print with color: ```console % NO_COLOR=true deno run build_script.ts...