UNPKG

harmonyc

Version:

Harmony Code - model-driven BDD for Vitest

6 lines (5 loc) 132 B
export const Indent = (n) => function* indent(lines) { for (const line of lines) { yield ' '.repeat(n) + line; } };