UNPKG
eslint-config-mts
Version:
latest (0.0.2)
0.0.2
0.0.1
MLT ESLint 规则
test.hulu.team/eslint/config/alloy
eslint-config-mts
/
test
/
base
/
no-useless-call
/
bad.js
6 lines
(4 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
foo
.call
(null,
1
,
2
,
3
);
// foo(1, 2, 3)
foo
.apply
(null, [
1
,
2
,
3
]);
// foo(1, 2, 3)
foo
.bar
.call
(foo,
1
,
2
,
3
);
// foo.bar(1, 2, 3);
foo
.bar
.apply
(foo, [
1
,
2
,
3
]);
// foo.bar(1, 2, 3);