UNPKG

158 BJavaScriptView Raw
1/**
2 * @since 2.2.0
3 */
4import { drawTree } from 'fp-ts/es6/Tree';
5/**
6 * @since 2.2.0
7 */
8export function draw(e) {
9 return e.map(drawTree).join('\n');
10}