Skip to content

Commit 918f5c7

Browse files
committed
Auto-generated commit
1 parent 1c7c91b commit 918f5c7

File tree

317 files changed

+2675
-509
lines changed

Some content is hidden

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

317 files changed

+2675
-509
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Many of the assertion utilities have corresponding packages that test whether ar
108108

109109
- <span class="signature">[`isArrayArray( value )`][@stdlib/assert/is-array-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array of arrays.</span>
110110
- <span class="signature">[`isBooleanArray( value )`][@stdlib/assert/is-boolean-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object of booleans.</span>
111+
- <span class="signature">[`isDateObjectArray( value )`][@stdlib/assert/is-date-object-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object containing only Date objects.</span>
111112
- <span class="signature">[`isFunctionArray( value )`][@stdlib/assert/is-function-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object containing only functions.</span>
112113
- <span class="signature">[`isNaNArray( value )`][@stdlib/assert/is-nan-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object containing only NaN values.</span>
113114
- <span class="signature">[`isNullArray( value )`][@stdlib/assert/is-null-array]</span><span class="delimiter">: </span><span class="description">test if a value is an array-like object containing only null values.</span>
@@ -401,6 +402,7 @@ The remaining namespace utilities are as follows:
401402
- <span class="signature">[`isComposite( value )`][@stdlib/assert/is-composite]</span><span class="delimiter">: </span><span class="description">test if a value is a composite number.</span>
402403
- <span class="signature">[`isConfigurablePropertyIn( value, property )`][@stdlib/assert/is-configurable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is configurable.</span>
403404
- <span class="signature">[`isConfigurableProperty( value, property )`][@stdlib/assert/is-configurable-property]</span><span class="delimiter">: </span><span class="description">test if an object's own property is configurable.</span>
405+
- <span class="signature">[`isCurrentYear( value )`][@stdlib/assert/is-current-year]</span><span class="delimiter">: </span><span class="description">test if a value is the current year.</span>
404406
- <span class="signature">[`isDataPropertyIn( value, property )`][@stdlib/assert/is-data-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property has a data descriptor.</span>
405407
- <span class="signature">[`isDataProperty( value, property )`][@stdlib/assert/is-data-property]</span><span class="delimiter">: </span><span class="description">test if an object's own property has a data descriptor.</span>
406408
- <span class="signature">[`isDataView( value )`][@stdlib/assert/is-dataview]</span><span class="delimiter">: </span><span class="description">test if a value is a DataView.</span>
@@ -465,6 +467,7 @@ The remaining namespace utilities are as follows:
465467
- <span class="signature">[`isSameType( a, b )`][@stdlib/assert/is-same-type]</span><span class="delimiter">: </span><span class="description">test if two arguments have the same type.</span>
466468
- <span class="signature">[`isSameValueZero( a, b )`][@stdlib/assert/is-same-value-zero]</span><span class="delimiter">: </span><span class="description">test if two arguments are the same value.</span>
467469
- <span class="signature">[`isSameValue( a, b )`][@stdlib/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test if two arguments are the same value.</span>
470+
- <span class="signature">[`isSemVer( value )`][@stdlib/assert/is-semver]</span><span class="delimiter">: </span><span class="description">test if a value is a semantic version string.</span>
468471
- <span class="signature">[`isStrictEqual( a, b )`][@stdlib/assert/is-strict-equal]</span><span class="delimiter">: </span><span class="description">test if two arguments are strictly equal.</span>
469472
- <span class="signature">[`isTruthy( value )`][@stdlib/assert/is-truthy]</span><span class="delimiter">: </span><span class="description">test if a value is truthy.</span>
470473
- <span class="signature">[`isUNCPath( value )`][@stdlib/assert/is-unc-path]</span><span class="delimiter">: </span><span class="description">test if a value is a UNC path.</span>
@@ -647,6 +650,8 @@ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
647650

648651
[@stdlib/assert/is-configurable-property]: https://github.com/stdlib-js/assert/tree/main/is-configurable-property
649652

653+
[@stdlib/assert/is-current-year]: https://github.com/stdlib-js/assert/tree/main/is-current-year
654+
650655
[@stdlib/assert/is-data-property-in]: https://github.com/stdlib-js/assert/tree/main/is-data-property-in
651656

652657
[@stdlib/assert/is-data-property]: https://github.com/stdlib-js/assert/tree/main/is-data-property
@@ -775,6 +780,8 @@ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
775780

776781
[@stdlib/assert/is-same-value]: https://github.com/stdlib-js/assert/tree/main/is-same-value
777782

783+
[@stdlib/assert/is-semver]: https://github.com/stdlib-js/assert/tree/main/is-semver
784+
778785
[@stdlib/assert/is-strict-equal]: https://github.com/stdlib-js/assert/tree/main/is-strict-equal
779786

780787
[@stdlib/assert/is-truthy]: https://github.com/stdlib-js/assert/tree/main/is-truthy
@@ -1069,6 +1076,8 @@ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
10691076

10701077
[@stdlib/assert/is-boolean-array]: https://github.com/stdlib-js/assert/tree/main/is-boolean-array
10711078

1079+
[@stdlib/assert/is-date-object-array]: https://github.com/stdlib-js/assert/tree/main/is-date-object-array
1080+
10721081
[@stdlib/assert/is-function-array]: https://github.com/stdlib-js/assert/tree/main/is-function-array
10731082

10741083
[@stdlib/assert/is-nan-array]: https://github.com/stdlib-js/assert/tree/main/is-nan-array

contains/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 contains = require( './main.js' );
44+
var main = require( './main.js' );
4545

4646

4747
// EXPORTS //
4848

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

deep-equal/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 deepEqual = require( './main.js' );
41+
var main = require( './main.js' );
4242

4343

4444
// EXPORTS //
4545

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

deep-has-own-property/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@
6262
// MODULES //
6363

6464
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
65-
var deepHasOwnProp = require( './main.js' );
65+
var main = require( './main.js' );
6666
var factory = require( './factory.js' );
6767

6868

6969
// MAIN //
7070

71-
setReadOnly( deepHasOwnProp, 'factory', factory );
71+
setReadOnly( main, 'factory', factory );
7272

7373

7474
// EXPORTS //
7575

76-
module.exports = deepHasOwnProp;
76+
module.exports = main;

deep-has-property/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@
6868
// MODULES //
6969

7070
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
71-
var deepHasProp = require( './main.js' );
71+
var main = require( './main.js' );
7272
var factory = require( './factory.js' );
7373

7474

7575
// MAIN //
7676

77-
setReadOnly( deepHasProp, 'factory', factory );
77+
setReadOnly( main, 'factory', factory );
7878

7979

8080
// EXPORTS //
8181

82-
module.exports = deepHasProp;
82+
module.exports = main;

has-arraybuffer-support/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 hasArrayBufferSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-arrow-function-support/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 hasArrowFunctionSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-async-await-support/lib/index.js

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

3737
// MODULES //
3838

39-
var hasAsyncAwaitSupport = require( './main.js' );
39+
var main = require( './main.js' );
4040

4141

4242
// EXPORTS //
4343

44-
module.exports = hasAsyncAwaitSupport;
44+
module.exports = main;

has-async-iterator-symbol-support/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 hasAsyncIteratorSymbolSupport = require( './main.js' ); // eslint-disable-line id-length
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-bigint-support/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 hasBigIntSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-class-support/lib/index.js

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

3737
// MODULES //
3838

39-
var hasClassSupport = require( './main.js' );
39+
var main = require( './main.js' );
4040

4141

4242
// EXPORTS //
4343

44-
module.exports = hasClassSupport;
44+
module.exports = main;

has-dataview-support/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 hasDataViewSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-define-properties-support/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 hasDefinePropertiesSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-define-property-support/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 hasDefinePropertySupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-function-name-support/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 hasFunctionNameSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-generator-support/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 hasGeneratorSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-globalthis-support/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 hasGlobalThisSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-iterator-symbol-support/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 hasIteratorSymbolSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-map-support/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 hasMapSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-node-buffer-support/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 hasNodeBufferSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-own-property/lib/index.js

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

4040
// MODULES //
4141

42-
var hasOwnProp = require( './main.js' );
42+
var main = require( './main.js' );
4343

4444

4545
// EXPORTS //
4646

47-
module.exports = hasOwnProp;
47+
module.exports = main;

has-property/lib/index.js

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

4040
// MODULES //
4141

42-
var hasProp = require( './main.js' );
42+
var main = require( './main.js' );
4343

4444

4545
// EXPORTS //
4646

47-
module.exports = hasProp;
47+
module.exports = main;

has-proxy-support/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 hasProxySupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-set-support/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 hasSetSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-sharedarraybuffer-support/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 hasSharedArrayBufferSupport = require( './main.js' ); // eslint-disable-line id-length
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-symbol-support/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 hasSymbolSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-tostringtag-support/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 hasToStringTagSupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

has-wasm-support/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 hasWebAssemblySupport = require( './main.js' );
35+
var main = require( './main.js' );
3636

3737

3838
// EXPORTS //
3939

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

0 commit comments

Comments
 (0)