Files
babel/packages/babel-plugin-proposal-function-bind/test/fixtures/function-bind/complex-call/actual.js

7 lines
158 B
JavaScript

import { map, takeWhile, forEach } from "iterlib";
getPlayers()
::map(x => x.character())
::takeWhile(x => x.strength > 100)
::forEach(x => console.log(x));