From 473503a246aa7a23539a349710c5549d1d87c147 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 10 Jan 2016 20:07:42 +0100 Subject: The great modularization. Use ES6 module syntax and SystemJS modules for everything. Some testing stubs were added as well. --- extension/lib/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extension/lib/util.ts') diff --git a/extension/lib/util.ts b/extension/lib/util.ts index f488bc77c..f2fdb131a 100644 --- a/extension/lib/util.ts +++ b/extension/lib/util.ts @@ -52,4 +52,4 @@ function format(s: string, ...args: any[]) { function promiseFinally(p: Promise, fn): Promise { return p.then((x) => { fn(); return x; }) .catch((e) => {fn(); throw e;}); -} \ No newline at end of file +} -- cgit v1.2.3