Use strict everywhere (#68)

This commit is contained in:
Seth Vargo 2021-11-30 16:23:28 -05:00 committed by GitHub
parent a37d7b422e
commit c6fa692def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,5 @@
'use strict';
import https, { RequestOptions } from 'https'; import https, { RequestOptions } from 'https';
import { URL } from 'url'; import { URL } from 'url';
import { import {

View File

@ -1,3 +1,5 @@
'use strict';
/** /**
* Defines the main interface for all clients that generate credentials. * Defines the main interface for all clients that generate credentials.
*/ */

View File

@ -1,3 +1,5 @@
'use strict';
import { promises as fs } from 'fs'; import { promises as fs } from 'fs';
import crypto from 'crypto'; import crypto from 'crypto';
import path from 'path'; import path from 'path';

View File

@ -1,3 +1,5 @@
'use strict';
import 'mocha'; import 'mocha';
import { expect } from 'chai'; import { expect } from 'chai';

View File

@ -1,3 +1,5 @@
'use strict';
import 'mocha'; import 'mocha';
import { expect } from 'chai'; import { expect } from 'chai';