11 lines
308 B
JavaScript
11 lines
308 B
JavaScript
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)
|
|
})
|
|
]
|
|
|