TypeScript/tests/baselines/reference/functionType.js

13 lines
208 B
TypeScript

//// [functionType.ts]
function salt() {}
salt.apply("hello", []);
(new Function("return 5"))();
//// [functionType.js]
function salt() { }
salt.apply("hello", []);
(new Function("return 5"))();