From 2ee4111baec9dcb578f3563776c5e1b4b75ea240 Mon Sep 17 00:00:00 2001 From: vvakame Date: Sat, 29 Aug 2015 00:44:26 +0900 Subject: [PATCH] fix async/asyncamd-tests.ts --- async/asyncamd-tests.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/async/asyncamd-tests.ts b/async/asyncamd-tests.ts index 4618a67bf5..fc1c254607 100644 --- a/async/asyncamd-tests.ts +++ b/async/asyncamd-tests.ts @@ -1,3 +1,5 @@ +/// + import async = require("async"); -async.map(["a", "b", "c"], (item, cb) => cb(null, [item.toUpperCase()]), (err, results) => { }); \ No newline at end of file +async.map(["a", "b", "c"], (item, cb) => cb(null, [item.toUpperCase()]), (err, results) => { });