TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements8.js

14 lines
310 B
TypeScript

//// [functionWithDefaultParameterWithNoStatements8.ts]
function foo(a = undefined) { }
function bar(a = undefined) {
}
//// [functionWithDefaultParameterWithNoStatements8.js]
function foo(a) {
if (a === void 0) { a = undefined; }
}
function bar(a) {
if (a === void 0) { a = undefined; }
}