We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
filter.js
There are many things I would like to change:
arr-diff/benchmark/code/filter.js
Line 3 in ea84b7d
function
arrays
const arrays =
arguments
...arrays
Line 4 in ea84b7d
[].concat()
[].concat.apply()
[].slice
Array.prototype.slice
Line 6 in ea84b7d
includes
indexOf
Can I make a pull request changing this? Should I add a new benchmark or edit the existing one?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are many things I would like to change:
arr-diff/benchmark/code/filter.js
Line 3 in ea84b7d
function
instead of arrow functionarr-diff/benchmark/code/filter.js
Line 3 in ea84b7d
arrays
for a parameter, but is actually used likeconst arrays =
. Usesarguments
, when it could use...arrays
.arr-diff/benchmark/code/filter.js
Line 4 in ea84b7d
[].concat()
instead of[].concat.apply()
. Uses[].slice
whenArray.prototype.slice
makes more sense.arr-diff/benchmark/code/filter.js
Line 6 in ea84b7d
includes
instead ofindexOf
Can I make a pull request changing this? Should I add a new benchmark or edit the existing one?
The text was updated successfully, but these errors were encountered: