fix async/asyncamd-tests.ts

This commit is contained in:
vvakame
2015-08-29 00:44:26 +09:00
parent 6e1a983aee
commit 2ee4111bae

View File

@@ -1,3 +1,5 @@
/// <reference path="./async.d.ts" />
import async = require("async");
async.map(["a", "b", "c"], (item, cb) => cb(null, [item.toUpperCase()]), (err, results) => { });
async.map(["a", "b", "c"], (item, cb) => cb(null, [item.toUpperCase()]), (err, results) => { });