WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 978ee5c

Browse files
committed
fix: add missing devDependencies and sort alphabetically
1 parent e2aa63d commit 978ee5c

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

lib/node_modules/@stdlib/math/base/special/truncbf/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
// MODULES //
4343

4444
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
45-
var tryRequire = require( '@stdlib/utils/try-require' ); // <-- MOVED UP
46-
var main = require( './main.js' ); // <-- MOVED DOWN
45+
var tryRequire = require( '@stdlib/utils/try-require' );
46+
var main = require( './main.js' );
4747

4848

4949
// VARIABLES //
@@ -63,4 +63,4 @@ if ( native ) {
6363

6464
// EXPORTS //
6565

66-
module.exports = main;
66+
module.exports = main;

lib/node_modules/@stdlib/math/base/special/truncbf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ function truncbf( x, n, b ) {
8282

8383
// EXPORTS //
8484

85-
module.exports = truncbf;
85+
module.exports = truncbf;

lib/node_modules/@stdlib/math/base/special/truncbf/lib/native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -45,4 +45,4 @@ function truncbf( x, n, b ) {
4545

4646
// EXPORTS //
4747

48-
module.exports = truncbf;
48+
module.exports = truncbf;

lib/node_modules/@stdlib/math/base/special/truncbf/test/test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -20,6 +20,7 @@
2020

2121
// MODULES //
2222

23+
// eslint-disable-next-line node/no-unpublished-require
2324
var tape = require( 'tape' );
2425
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
2526
var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
@@ -144,4 +145,4 @@ tape( 'the function returns -infinity if provided -infinity', function test( t )
144145
var v = truncbf( NINF, 2, 10 );
145146
t.strictEqual( v, NINF, 'returns expected value' );
146147
t.end();
147-
});
148+
});

lib/node_modules/@stdlib/math/base/special/truncbf/test/test.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* http://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -21,6 +21,7 @@
2121
// MODULES //
2222

2323
var resolve = require( 'path' ).resolve;
24+
// eslint-disable-next-line node/no-unpublished-require
2425
var tape = require( 'tape' );
2526
var tryRequire = require( '@stdlib/utils/try-require' );
2627
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );

0 commit comments

Comments
 (0)