add file alias declarations so we can alias certain long function calls - resolves #62
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
var _slice = Array.prototype.slice;
|
||||
|
||||
function foo() {
|
||||
return bar.apply(null, ["test"].concat(Array.prototype.slice.call(arguments)));
|
||||
return bar.apply(null, ["test"].concat(_slice.call(arguments)));
|
||||
}
|
||||
function bar(one, two, three) {
|
||||
return [
|
||||
|
||||
Reference in New Issue
Block a user