Remove flow

This commit is contained in:
Sam Goldman
2016-03-01 21:02:55 -08:00
parent f4197cc77b
commit 2827ff6b01
75 changed files with 278 additions and 542 deletions

View File

@@ -22,7 +22,7 @@ let buildCutOff = template(`
`);
function hasDefaults(node) {
for (let param of (node.params: Array<Object>)) {
for (let param of node.params) {
if (!t.isIdentifier(param)) return true;
}
return false;