Skip to content

Commit 6dac329

Browse files
committed
Auto-generated commit
1 parent 4b14250 commit 6dac329

File tree

27 files changed

+52
-52
lines changed

27 files changed

+52
-52
lines changed

buffer/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tape( 'main export is a function', function test( t ) {
5353
tape( 'if an environment supports `ArrayBuffer`, the export is an alias for `ArrayBuffer`', function test( t ) {
5454
var Foo = proxyquire( './../lib', {
5555
'@stdlib/assert/has-arraybuffer-support': isTrue,
56-
'./arraybuffer.js': Mock
56+
'./main.js': Mock
5757
});
5858
t.strictEqual( Foo, Mock, 'returns builtin' );
5959

ctors/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535

3636
// MODULES //
3737

38-
var ctors = require( './main.js' );
38+
var main = require( './main.js' );
3939

4040

4141
// EXPORTS //
4242

43-
module.exports = ctors;
43+
module.exports = main;

datespace/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535

3636
// MODULES //
3737

38-
var datespace = require( './main.js' );
38+
var main = require( './main.js' );
3939

4040

4141
// EXPORTS //
4242

43-
module.exports = datespace;
43+
module.exports = main;

dtype/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141

4242
// MODULES //
4343

44-
var dtype = require( './main.js' );
44+
var main = require( './main.js' );
4545

4646

4747
// EXPORTS //
4848

49-
module.exports = dtype;
49+
module.exports = main;

dtypes/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
// MODULES //
3434

35-
var dtypes = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = dtypes;
40+
module.exports = main;

next-dtype/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
// MODULES //
3434

35-
var nextDataType = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = nextDataType;
40+
module.exports = main;

promotion-rules/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
// MODULES //
4040

41-
var promotionRules = require( './main.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

46-
module.exports = promotionRules;
46+
module.exports = main;

safe-casts/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
// MODULES //
3434

35-
var safeCasts = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = safeCasts;
40+
module.exports = main;

same-kind-casts/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232

3333
// MODULES //
3434

35-
var sameKindCasts = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

40-
module.exports = sameKindCasts;
40+
module.exports = main;

shared-buffer/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tape( 'main export is a function', function test( t ) {
5050
tape( 'if an environment supports `SharedArrayBuffer`, the export is an alias for `SharedArrayBuffer`', function test( t ) {
5151
var Foo = proxyquire( './../lib', {
5252
'@stdlib/assert/has-sharedarraybuffer-support': isTrue,
53-
'./sharedarraybuffer.js': Mock
53+
'./main.js': Mock
5454
});
5555
t.strictEqual( Foo, Mock, 'returns built-in' );
5656

0 commit comments

Comments
 (0)