UNPKG

planify

Version:

Plan a series of steps and display the output in a beautiful way

13 lines (9 loc) 201 B
'use strict'; const planify = require('../../'); function build() { return planify() .step('Single step', () => { console.log('single-step.visit'); }); } module.exports = build;