Skip to content

Instantly share code, notes, and snippets.

@briancavalier
Last active December 9, 2016 23:48
Show Gist options
  • Save briancavalier/97f667dc95884a64072e8233165aa169 to your computer and use it in GitHub Desktop.
Save briancavalier/97f667dc95884a64072e8233165aa169 to your computer and use it in GitHub Desktop.
esnextbin sketch
<!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>
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))
{
"name": "esnextbin-sketch",
"version": "0.0.0",
"dependencies": {
"most": "1.1.1"
}
}
'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