Last active
March 10, 2017 20:04
-
-
Save garbles/bfde77a477785c99daa4a75eb795d2ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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