From f1a7ab74eaf7c46be0b2570b58508e8887691790 Mon Sep 17 00:00:00 2001 From: Ilya Mochalov Date: Sun, 28 Feb 2016 07:27:28 +0500 Subject: [PATCH] lodash: fixed _.isMap --- lodash/lodash.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index a172f7498d..9034976171 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -18284,3 +18284,6 @@ declare module _ { declare module "lodash" { export = _; } + +// Backward compatibility with --target es5 +interface Map {}