UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

3 lines 108 B
export default function demo (foo: string, bar: number = 1): boolean { return foo.length > 0 && bar > 0; }