Skip to content

Commit b857ad9

Browse files
committed
rename variable for future compatibility
1 parent bd18bc0 commit b857ad9

File tree

1 file changed

+2
-2
lines changed
  • test/cases/loaders/issue-2299/loader

1 file changed

+2
-2
lines changed

test/cases/loaders/issue-2299/loader/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
var async = require("async");
1+
var asyncLib = require("async");
22
module.exports = function(content) {
33
var cb = this.async();
44
var json = JSON.parse(content);
5-
async.mapSeries(
5+
asyncLib.mapSeries(
66
json.imports,
77
function(url, callback) {
88
this.loadModule(url, function(err, source, map, module) {

0 commit comments

Comments
 (0)