Mark Fulton
Mark Fulton
I'd like to be able to generate documentation for things added to existing types. https://www.typescriptlang.org/docs/handbook/declaration-merging.html#global-augmentation ```ts // observable.ts export class Observable {} declare global { interface Array { toObservable(): Observable;...
**Is your feature request related to a problem? Please describe.** I would like to assert that an object is NOT an instance of a specific type. (i.e. the complement to...
I appreciated the recent blog post: [A Whole Website in a Single JavaScript File](https://deno.com/blog/a-whole-website-in-a-single-js-file). I have some ideas for additional demos. Some of these might not be feasible yet but...
My employer wishes Deno Deploy to support SSO (federated single-sign-on) before exploring usage of Deno Deploy.
First, some things I love about Deno Deploy for context: - it implements the `FetchEvent` for handling incoming requests just like service workers do inside a web browser - `setInterval`...
I'd like to run benchmarks defined with `Deno.bench` in a Node environment.
I like how in Deno there is a convention that anything that starts with "\_" is considered private and shouldn't be imported. I think it would be helpful to automatically...
### Is your proposal related to a problem? I don't want my offline-first React app to be bloated in size nor for default React apps to unnecessarily target outdated ECMAScript....
It would be really cool if I could hit Ctrl/Cmd+F and find text within the rendered document like I would in a web browser or in editor windows, etc.
Would you be open to the addition of a generator function to generate all permutations of an array? e.g. I have one I ported from [Collections2.java · google/guava](https://github.com/google/guava/blob/f4b3f611c4e49ecaded58dcb49262f55e56a3322/guava/src/com/google/common/collect/Collections2.java#L622-L683) that I...