UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

7 lines 148 B
export default function demo (input: number): number { let total = 0; for (let item: string of input) { total += item; } return total; }