Skip to content

Instantly share code, notes, and snippets.

@ccorcos
Created March 2, 2017 04:33
Show Gist options
  • Save ccorcos/cd1467f6f27eb088d3b9aad83918f607 to your computer and use it in GitHub Desktop.
Save ccorcos/cd1467f6f27eb088d3b9aad83918f607 to your computer and use it in GitHub Desktop.
const char = c => input => {
if (input[0] === c) {
return {success: true, rest: input.slice(1)}
}
return {success: false, rest: input}
}
char('a')('abc')
// => { success: true, rest: 'bc' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment