Christophe Hurpeau
Christophe Hurpeau
@deadbeef84 can be related: https://github.com/babel/babel/pull/4883
Yes, but as you can see [in node.green](http://node.green/#function--name--property) the function name features are supported in node 6.5 because [v8 was updated to 5.1](https://github.com/nodejs/node/pull/8054)
Maybe we could use the preset `es2015-node6/node6.5` ?
`bar = true;` should not compile to `bar = _assert(true, _t.Boolean, "bar");` because we know that `true` is a boolean, in my opinion.
Solution that worked for me is to remove dom from the builtins, because then flow-runtime checks with `instanceof`: `rm node_modules/flow-runtime-cli/flow-builtins/dom.js ; flow-runtime generate ./src > ./src/typedefs.js` Maybe flow-runtime should not...
husky did something when husky itself is missing: https://github.com/typicode/husky/commit/3b1e394da549cf5aec05246455e7088e3133f69c
Example to support all options : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/215cb1970b3c998bac688396c6cd9756b446055b/types/classnames/index.d.ts
It might help someone: we updated expo to 45 but jest-expo was still in 44. Updating to 45 fixed this issue for us.