Skip to content

Instantly share code, notes, and snippets.

@kofno
Last active June 25, 2017 00:23
Show Gist options
  • Select an option

  • Save kofno/7b03203e4629fbcc48d2fade3eaf9434 to your computer and use it in GitHub Desktop.

Select an option

Save kofno/7b03203e4629fbcc48d2fade3eaf9434 to your computer and use it in GitHub Desktop.
Map applied to decoders
import { string } from 'jsonous';
const decoder = string().map(s => s + '-ish');
decoder.decodeAny('soon'); // --> Ok('soon-ish')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment