import { it, assert } from 'folktest' import { map, not, until, char, parse, State, seq, str } from '../../src/index.js' import { mapStr, join } from '../../src/fn.js' export const Tests = [ it('whatever', () => { const a = 'abcdef!!!!'.split('') parse(str('abc'), 'abc').map(console.log) }) ]