15 lines
180 B
JavaScript
15 lines
180 B
JavaScript
"use strict";
|
|
|
|
var t = function t(f) {
|
|
var x = f;
|
|
x = arguments[1];
|
|
x = arguments[2];
|
|
};
|
|
|
|
function t(f) {
|
|
var x = f;
|
|
x = arguments[1];
|
|
x = arguments[2];
|
|
}
|
|
|