UNPKG

220 BJavaScriptView Raw
1import { concatStatic } from './concat';
2import { _while } from './while';
3export function doWhile(source, condition) {
4 return concatStatic(source, _while(condition, source));
5}
6
7//# sourceMappingURL=dowhile.mjs.map