andretshurotshka
andretshurotshka
Can you explain current status of project? What is @motorcyclets and why it's not in this repo? How can I use Cycle.js DevTool with motorcycle?
OCaml
It would be very cool if it would be easy to port this to OCaml, at least lexer and parser
Node.js
Consider Node.js support?
Is this still maintained?
If all immutablejs types are extended from `Collection` can't we just patch it with fantasy-land methods?
Flow version: 0.103.0 ```js const foo = Object.freeze({a: 1}) // should be read-only foo.a = 1; // error const bar: {a: number} = foo // no error? bar.a = 1;...
Proof of concept for #7750 ## Issues - Depends on flow-typed NPM migration - Clashes with (in particular if there would be migration period from old libdefs to .js.flow) ```...
## Proposal https://github.com/tc39/proposal-top-level-await ## Use case ```js // awaiting.mjs import { process } from "./some-module.mjs"; const dynamic = import(computedModuleSpecifier); const data = fetch(url); export const output = process((await dynamic).default, await...
## Proposal https://devblogs.microsoft.com/typescript/announcing-typescript-3-4/#const-assertions ```js const foo = ([1, 2, 3]: const) // Type is [+1, +2, +3] (how to do read-only elements on tuple?) const bar = ('foo': const) //...