From c41e04a1b9c55d6acde2caeba77efc90ab4efff2 Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Mon, 13 Feb 2017 19:38:11 -0500 Subject: [PATCH] test(tslint): correct tslint whitespace issues --- src/lib/asyncOps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/asyncOps.ts b/src/lib/asyncOps.ts index c2c00f7..9521ab6 100644 --- a/src/lib/asyncOps.ts +++ b/src/lib/asyncOps.ts @@ -17,8 +17,8 @@ * * @returns a Promise which should contain `['a','b','c']` */ -export async function asyncABC() { - function somethingSlow(index: 0 | 1 | 2) { +export async function asyncABC () { + function somethingSlow (index: 0 | 1 | 2) { let storage = 'abc'.charAt(index) return new Promise(resolve => { // here we pretend to wait on the network