Skip to content

Commit 69d5e1e

Browse files
committed
chore: add missing 'use strict' directives
1 parent 822caea commit 69d5e1e

File tree

5 files changed

+9
-0
lines changed

5 files changed

+9
-0
lines changed

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
'use strict'
2+
13
module.exports = require('./lib/tedious')

lib/datatypes.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict'
2+
23
const objectHasProperty = require('./utils').objectHasProperty
34
const inspect = Symbol.for('nodejs.util.inspect.custom')
45

lib/utils.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
13
const IDS = new WeakMap()
24
const INCREMENT = {
35
Connection: 1,

msnodesqlv8.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
'use strict'
2+
13
module.exports = require('./lib/msnodesqlv8')

tedious.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
'use strict'
2+
13
module.exports = require('./lib/tedious')

0 commit comments

Comments
 (0)