Skip to content

Instantly share code, notes, and snippets.

@garbles
Last active March 10, 2017 20:04
Show Gist options
  • Save garbles/bfde77a477785c99daa4a75eb795d2ec to your computer and use it in GitHub Desktop.
Save garbles/bfde77a477785c99daa4a75eb795d2ec to your computer and use it in GitHub Desktop.
import {sampleOne, types} from 'babel-plugin-transform-flow-to-gen/api';
const personGen =
types.plainObject({
name: types.string(),
age: types.number()
});
console.log(sampleOne(personGen));
// { "name": "rJJ9", "age": -1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment