Skip to content

Instantly share code, notes, and snippets.

@ro-abramov
ro-abramov / links.txt
Last active May 16, 2019 11:34
Материалы и ссылки к докладу "React Hooks: истории из жизни"
@ro-abramov
ro-abramov / generators_flow.js
Last active April 23, 2018 12:56
Generators in js can do this ? omg o_0
function * fibo () {
let a = 0, b = 1;
while (true) {
yield b;
[a, b] = [b, a + b];
}
}
function getIterable (iter) {
return iter.next ? iter : iter();