Skip to content

Commit cfde2be

Browse files
committed
Fix use strict directives
1 parent fc66f6c commit cfde2be

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/assert/is-negative-finite/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
'use strict;'
19+
'use strict';
2020

2121
var isNegativeFinite = require( './../lib' );
2222

lib/node_modules/@stdlib/math/base/assert/is-negative-finite/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
'use strict;'
19+
'use strict';
2020

2121
// MODULES //
2222

lib/node_modules/@stdlib/math/base/assert/is-positive-finite/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
'use strict;'
19+
'use strict';
2020

2121
var isPositiveFinite = require( './../lib' );
2222

lib/node_modules/@stdlib/math/base/assert/is-positive-finite/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
'use strict;'
19+
'use strict';
2020

2121
// MODULES //
2222

0 commit comments

Comments
 (0)