diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-01-10 20:07:42 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-01-10 20:07:42 +0100 |
commit | 473503a246aa7a23539a349710c5549d1d87c147 (patch) | |
tree | 2b1ee9b420df72a0d861759d1fbcd2226e489086 /extension/lib/util.ts | |
parent | dd19e0ecbe114ebd71122ff57ea56eabb6258b75 (diff) |
The great modularization.
Use ES6 module syntax and SystemJS modules for everything.
Some testing stubs were added as well.
Diffstat (limited to 'extension/lib/util.ts')
-rw-r--r-- | extension/lib/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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<T>(p: Promise<T>, fn): Promise<T> { return p.then((x) => { fn(); return x; }) .catch((e) => {fn(); throw e;}); -}
\ No newline at end of file +} |