made with esnextbin
Last active
December 9, 2016 23:48
-
-
Save briancavalier/97f667dc95884a64072e8233165aa169 to your computer and use it in GitHub Desktop.
esnextbin sketch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ESNextbin Sketch</title> | |
<!-- put additional styles and scripts here --> | |
</head> | |
<body> | |
<!-- put markup and other contents here --> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { from } from 'most' | |
const sourceToString = source => | |
source.source ? `${sourceToString(source.source)} -> ${source.constructor.name}` | |
: source.constructor.name | |
const toString = ({ source }) => sourceToString(source) | |
const add1 = x => x + 1 | |
const a = [0,1,2,3,4,5,6,7,8,9,10,11] | |
const s = from(a).map(add1).skip(2).take(5).map(add1).take(2); | |
console.log(toString(s)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "esnextbin-sketch", | |
"version": "0.0.0", | |
"dependencies": { | |
"most": "1.1.1" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var _most = require('most'); | |
var sourceToString = function sourceToString(source) { | |
return source.source ? sourceToString(source.source) + ' -> ' + source.constructor.name : source.constructor.name; | |
}; | |
var toString = function toString(_ref) { | |
var source = _ref.source; | |
return sourceToString(source); | |
}; | |
var add1 = function add1(x) { | |
return x + 1; | |
}; | |
var a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; | |
var s = (0, _most.from)(a).map(add1).skip(2).take(5).map(add1).take(2); | |
console.log(toString(s)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment