Skip to content

Commit

Permalink
fix async/asyncamd-tests.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vvakame committed Aug 28, 2015
1 parent 6e1a983 commit 2ee4111
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion async/asyncamd-tests.ts
Original file line number Diff line number Diff line change
@@ -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) => { });

0 comments on commit 2ee4111

Please sign in to comment.