[Solved] The code checked with flow.js does not report an error

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

Read More: