TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements3.js

14 lines
282 B
TypeScript

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