fix up test styling and add use-strict declarator
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
var t = function (t, f) {
|
||||
"use strict";
|
||||
|
||||
var t = function(t, f) {
|
||||
if (f === undefined)
|
||||
f = 5;
|
||||
|
||||
if (t === undefined)
|
||||
t = "foo";
|
||||
|
||||
return t + " bar " + f;
|
||||
};
|
||||
var a = function (t, f) {
|
||||
|
||||
var a = function(t, f) {
|
||||
if (f === undefined)
|
||||
f = 5;
|
||||
|
||||
return t + " bar " + f;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user