Ondrej Kraus edb880f87c add tests
2015-02-25 14:26:28 +01:00

12 lines
167 B
JavaScript

var t = function (f, ...items) {
var x = f;
x = items[0];
x = items[1];
};
function t(f, ...items) {
var x = f;
x = items[0];
x = items[1];
}