Skip to content

Instantly share code, notes, and snippets.

@Phoenix35
Last active September 25, 2019 15:50
Show Gist options
  • Save Phoenix35/60caa9559839a804a3e478c8cb3e77f6 to your computer and use it in GitHub Desktop.
Save Phoenix35/60caa9559839a804a3e478c8cb3e77f6 to your computer and use it in GitHub Desktop.
export default function *filterMap (predicate, mapFn, it) {
let i = 0,
j = 0;
for (const x of it) {
if (predicate(x, i++, it))
yield mapFn(x, j++, it);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment