Skip to content

Commit 102f2a7

Browse files
committed
Merge branch 'develop' into feat/sincosf
2 parents e36338f + ca26c53 commit 102f2a7

File tree

4,653 files changed

+72386
-44483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,653 files changed

+72386
-44483
lines changed

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
166166
Ryan Seal <[email protected]>
167167
Rylan Yang <[email protected]>
168168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
169170
SHIVAM YADAV <[email protected]>
170171
Sachin Raj <[email protected]>
171172
Sahil Goyal <[email protected]>

lib/node_modules/@stdlib/_tools/benchmarks/browser-build/test/test.validate.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof validate, 'function', 'main export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

@@ -51,7 +51,7 @@ tape( 'the function returns an error if not provided an object', function test(
5151

5252
for ( i = 0; i < values.length; i++ ) {
5353
err = validate( {}, values[i] );
54-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
54+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
5555
}
5656
t.end();
5757
});
@@ -77,7 +77,7 @@ tape( 'the function returns an error if provided a `pattern` option which is not
7777
err = validate( {}, {
7878
'pattern': values[i]
7979
});
80-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
80+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
8181
}
8282
t.end();
8383
});
@@ -103,7 +103,7 @@ tape( 'the function returns an error if provided a `bundle` option which is not
103103
err = validate( {}, {
104104
'bundle': values[i]
105105
});
106-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
106+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
107107
}
108108
t.end();
109109
});
@@ -129,7 +129,7 @@ tape( 'the function returns an error if provided a `mount` option which is not a
129129
err = validate( {}, {
130130
'mount': values[i]
131131
});
132-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
132+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
133133
}
134134
t.end();
135135
});
@@ -155,7 +155,7 @@ tape( 'the function returns an error if provided an `html` option which is not a
155155
err = validate( {}, {
156156
'html': values[i]
157157
});
158-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
158+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
159159
}
160160
t.end();
161161
});
@@ -181,7 +181,7 @@ tape( 'the function returns an error if provided a `title` option which is not a
181181
err = validate( {}, {
182182
'title': values[i]
183183
});
184-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
184+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
185185
}
186186
t.end();
187187
});
@@ -201,7 +201,7 @@ tape( 'the function returns `null` if all options are valid', function test( t )
201201
};
202202

203203
err = validate( options, opts );
204-
t.equal( err, null, 'returns null' );
204+
t.strictEqual( err, null, 'returns expected value' );
205205

206206
t.deepEqual( options, opts, 'sets options' );
207207
t.end();
@@ -220,7 +220,7 @@ tape( 'the function ignores unrecognized/unsupported options', function test( t
220220
};
221221

222222
err = validate( options, opts );
223-
t.equal( err, null, 'returns null' );
223+
t.strictEqual( err, null, 'returns expected value' );
224224

225225
t.deepEqual( options, {}, 'does not set unrecognized options' );
226226
t.end();

lib/node_modules/@stdlib/_tools/benchmarks/bundle/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ tape( 'the command-line interface generates a bundle', opts, function test( t )
167167
evil( stdout.toString() );
168168
t.fail( 'should throw an error' );
169169
} catch ( err ) {
170-
t.equal( err.message, 'BEEP', 'has expected error message' );
170+
t.strictEqual( err.message, 'BEEP', 'has expected error message' );
171171
}
172172
}
173173
t.end();
@@ -200,7 +200,7 @@ tape( 'the command-line interface supports providing a custom glob pattern', opt
200200
evil( stdout.toString() );
201201
t.fail( 'should throw an error' );
202202
} catch ( err ) {
203-
t.equal( err.message, 'BEEP', 'has expected error message' );
203+
t.strictEqual( err.message, 'BEEP', 'has expected error message' );
204204
}
205205
}
206206
t.end();

lib/node_modules/@stdlib/_tools/benchmarks/bundle/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var FIXTURES = join( __dirname, 'fixtures', 'main' );
4141

4242
tape( 'main export is a function', function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof bundle, 'function', 'main export is a function' );
44+
t.strictEqual( typeof bundle, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

@@ -113,7 +113,7 @@ tape( 'the function generates a bundle', function test( t ) {
113113
evil( output.toString() );
114114
t.fail( 'should throw an error' );
115115
} catch ( err ) {
116-
t.equal( err.message, 'BEEP', 'has expected error message' );
116+
t.strictEqual( err.message, 'BEEP', 'has expected error message' );
117117
}
118118
}
119119
t.end();
@@ -137,7 +137,7 @@ tape( 'the function generates a bundle (custom glob pattern)', function test( t
137137
evil( output.toString() );
138138
t.fail( 'should throw an error' );
139139
} catch ( err ) {
140-
t.equal( err.message, 'BEEP', 'has expected error message' );
140+
t.strictEqual( err.message, 'BEEP', 'has expected error message' );
141141
}
142142
}
143143
t.end();
@@ -172,7 +172,7 @@ tape( 'the function supports providing an output file path', function test( t )
172172
evil( out.toString() );
173173
t.fail( 'should throw an error' );
174174
} catch ( err ) {
175-
t.equal( err.message, 'BEEP', 'has expected error message' );
175+
t.strictEqual( err.message, 'BEEP', 'has expected error message' );
176176
}
177177

178178
unlink( opath );

lib/node_modules/@stdlib/_tools/benchmarks/bundle/test/test.validate.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof validate, 'function', 'main export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

@@ -51,7 +51,7 @@ tape( 'the function returns an error if not provided an object', function test(
5151

5252
for ( i = 0; i < values.length; i++ ) {
5353
err = validate( {}, values[i] );
54-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
54+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
5555
}
5656
t.end();
5757
});
@@ -77,7 +77,7 @@ tape( 'the function returns an error if provided an `out` option which is not a
7777
err = validate( {}, {
7878
'out': values[i]
7979
});
80-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
80+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
8181
}
8282
t.end();
8383
});
@@ -103,7 +103,7 @@ tape( 'the function returns an error if provided a `pattern` option which is not
103103
err = validate( {}, {
104104
'pattern': values[i]
105105
});
106-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
106+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
107107
}
108108
t.end();
109109
});
@@ -120,7 +120,7 @@ tape( 'the function returns `null` if all options are valid', function test( t )
120120
};
121121

122122
err = validate( options, opts );
123-
t.equal( err, null, 'returns null' );
123+
t.strictEqual( err, null, 'returns expected value' );
124124

125125
t.deepEqual( options, opts, 'sets options' );
126126
t.end();
@@ -139,7 +139,7 @@ tape( 'the function ignores unrecognized/unsupported options', function test( t
139139
};
140140

141141
err = validate( options, opts );
142-
t.equal( err, null, 'returns null' );
142+
t.strictEqual( err, null, 'returns expected value' );
143143

144144
t.deepEqual( options, {}, 'does not set unrecognized options' );
145145
t.end();

lib/node_modules/@stdlib/_tools/benchmarks/html/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
// MODULES //
2222

23-
var tape = require( 'tape' );
2423
var join = require( 'path' ).join;
24+
var tape = require( 'tape' );
2525
var unlink = require( '@stdlib/fs/unlink' ).sync;
2626
var readFile = require( '@stdlib/fs/read-file' ).sync;
2727
var noop = require( '@stdlib/utils/noop' );
@@ -37,7 +37,7 @@ var EXPECTED = readFile( join( __dirname, 'fixtures', 'expected.txt' ) );
3737

3838
tape( 'main export is a function', function test( t ) {
3939
t.ok( true, __filename );
40-
t.equal( typeof bundle, 'function', 'main export is a function' );
40+
t.strictEqual( typeof bundle, 'function', 'main export is a function' );
4141
t.end();
4242
});
4343

lib/node_modules/@stdlib/_tools/benchmarks/html/test/test.validate.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof validate, 'function', 'main export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

@@ -51,7 +51,7 @@ tape( 'the function returns an error if not provided an object', function test(
5151

5252
for ( i = 0; i < values.length; i++ ) {
5353
err = validate( {}, values[i] );
54-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
54+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
5555
}
5656
t.end();
5757
});
@@ -77,7 +77,7 @@ tape( 'the function returns an error if provided an `out` option which is not a
7777
err = validate( {}, {
7878
'out': values[i]
7979
});
80-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
80+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
8181
}
8282
t.end();
8383
});
@@ -103,7 +103,7 @@ tape( 'the function returns an error if provided a `title` option which is not a
103103
err = validate( {}, {
104104
'title': values[i]
105105
});
106-
t.equal( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
106+
t.strictEqual( err instanceof TypeError, true, 'returns a type error when provided '+values[i] );
107107
}
108108
t.end();
109109
});
@@ -120,7 +120,7 @@ tape( 'the function returns `null` if all options are valid', function test( t )
120120
};
121121

122122
err = validate( options, opts );
123-
t.equal( err, null, 'returns null' );
123+
t.strictEqual( err, null, 'returns expected value' );
124124

125125
t.deepEqual( options, opts, 'sets options' );
126126
t.end();
@@ -139,7 +139,7 @@ tape( 'the function ignores unrecognized/unsupported options', function test( t
139139
};
140140

141141
err = validate( options, opts );
142-
t.equal( err, null, 'returns null' );
142+
t.strictEqual( err, null, 'returns expected value' );
143143

144144
t.deepEqual( options, {}, 'does not set unrecognized options' );
145145
t.end();

lib/node_modules/@stdlib/_tools/bib/citation-reference/test/test.async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var toReference = require( './../lib/async.js' );
2929

3030
tape( 'main export is a function', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof toReference, 'function', 'main export is a function' );
32+
t.strictEqual( typeof toReference, 'function', 'main export is a function' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/_tools/bib/citation-reference/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ var toReference = require( './../lib' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof toReference, 'function', 'main export is a function' );
31+
t.strictEqual( typeof toReference, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

3535
tape( 'attached to the main export is a method to synchronously return a reference', function test( t ) {
36-
t.equal( typeof toReference.sync, 'function', 'has sync method' );
36+
t.strictEqual( typeof toReference.sync, 'function', 'has sync method' );
3737
t.end();
3838
});

lib/node_modules/@stdlib/_tools/bib/citation-reference/test/test.sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var toReference = require( './../lib/sync.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof toReference, 'function', 'main export is a function' );
31+
t.strictEqual( typeof toReference, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

0 commit comments

Comments
 (0)