UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.

11 lines (10 loc) 186 B
/** * @since 2.0.0 */ export var tailRec = function (startWith, f) { var ab = f(startWith); while (ab._tag === 'Left') { ab = f(ab.left); } return ab.right; };