GT2/GT2-iOS/node_modules/very-fast-args/bench/simple-with-fa.js
2018-02-12 17:26:06 +00:00

9 lines
165 B
JavaScript

const fastArgs = require('fast-args');
function withVeryFastArgs() {
return fastArgs(arguments);
}
for(var i = 0; i < 1e6; i++) {
withVeryFastArgs(1,2,3,4);
}