Prettier code cleanup for .ts files

See #182
This commit is contained in:
Michael Shamoon
2022-03-11 10:53:32 -08:00
parent d56c9dc94b
commit bd4a705769
159 changed files with 3882 additions and 2716 deletions

View File

@@ -1,8 +1,8 @@
import { SafePipe } from './safe.pipe';
import { SafePipe } from './safe.pipe'
describe('SafePipe', () => {
it('create an instance', () => {
const pipe = new SafePipe();
expect(pipe).toBeTruthy();
});
});
const pipe = new SafePipe()
expect(pipe).toBeTruthy()
})
})