Files
babel/test/fixtures/transformation/default-parameters/single/expected.js
Sebastian McKenzie df70be4ebb clean up and fix tests
2014-11-07 12:33:35 +11:00

8 lines
97 B
JavaScript

"use strict";
var t = function (t) {
if (t === undefined) t = "foo";
return t + " bar";
};