refactor(docs-infra): remove unnecessary use strict from docs examples TS files (#38143)

By default, TypeScript will emit `"use strict"` directives, so it is not
necessary to include `'use strict'` in `.ts` files:
https://www.typescriptlang.org/docs/handbook/compiler-options.html#:~:text=--noImplicitUseStrict

PR Close #38143
This commit is contained in:
George Kalpakas
2020-07-30 13:03:08 +03:00
committed by Michael Prentice
parent 201c38e407
commit b88abd81c8
65 changed files with 0 additions and 129 deletions

View File

@ -1,5 +1,3 @@
'use strict';
import { browser, element, by } from 'protractor';
describe('Built-in Directives', function () {