2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Using more strict eslint rules

This commit is contained in:
Matt Zabriskie
2015-12-14 20:06:57 -07:00
parent 2b147fb0b7
commit f28a4a8248
16 changed files with 230 additions and 93 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
* @returns {Function}
*/
module.exports = function spread(callback) {
return function (arr) {
return function wrap(arr) {
return callback.apply(null, arr);
};
};