Skip to content

Instantly share code, notes, and snippets.

@dubzzz
Created July 2, 2020 17:06
Show Gist options
  • Save dubzzz/807320c93d3dc3369289c7c40743dccb to your computer and use it in GitHub Desktop.
Save dubzzz/807320c93d3dc3369289c7c40743dccb to your computer and use it in GitHub Desktop.
miniFc.string = () => map(
miniFc.array(miniFc.character()),
characters => characters.join('')
)
miniFc.dictionary = (valueGenerator) => map(
miniFc.array(
miniFc.tuple(
miniFc.string(),
valueGenerator
)
),
Object.fromEntries
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment