function square(n) {
return n * n;
}
square("2");
flow
run without error? One comment is missing
// @flow
function square(n) {
return n * n;
}
square("2");
Only comments with flow are checked
function square(n) {
return n * n;
}
square("2");
flow
run without error? One comment is missing
// @flow
function square(n) {
return n * n;
}
square("2");
Only comments with flow are checked