Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 23, 2022
1 parent 1c7c91b commit 918f5c7
Show file tree
Hide file tree
Showing 317 changed files with 2,675 additions and 509 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Many of the assertion utilities have corresponding packages that test whether ar

- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
Expand Down Expand Up @@ -401,6 +402,7 @@ The remaining namespace utilities are as follows:
- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
Expand Down Expand Up @@ -465,6 +467,7 @@ The remaining namespace utilities are as follows:
- <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>
- <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>
- <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>
- <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>
- <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>
- <span class="signature">[`isTruthy( value )`][@stdlib/assert/is-truthy]</span><span class="delimiter">: </span><span class="description">test if a value is truthy.</span>
- <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>
Expand Down Expand Up @@ -647,6 +650,8 @@ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].

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

[@stdlib/assert/is-current-year]: https://github.com/stdlib-js/assert/tree/main/is-current-year

[@stdlib/assert/is-data-property-in]: https://github.com/stdlib-js/assert/tree/main/is-data-property-in

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

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

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

[@stdlib/assert/is-strict-equal]: https://github.com/stdlib-js/assert/tree/main/is-strict-equal

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

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

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

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

[@stdlib/assert/is-nan-array]: https://github.com/stdlib-js/assert/tree/main/is-nan-array
Expand Down
4 changes: 2 additions & 2 deletions contains/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@

// MODULES //

var contains = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = contains;
module.exports = main;
4 changes: 2 additions & 2 deletions deep-equal/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@

// MODULES //

var deepEqual = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = deepEqual;
module.exports = main;
6 changes: 3 additions & 3 deletions deep-has-own-property/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
// MODULES //

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


// MAIN //

setReadOnly( deepHasOwnProp, 'factory', factory );
setReadOnly( main, 'factory', factory );


// EXPORTS //

module.exports = deepHasOwnProp;
module.exports = main;
6 changes: 3 additions & 3 deletions deep-has-property/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@
// MODULES //

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


// MAIN //

setReadOnly( deepHasProp, 'factory', factory );
setReadOnly( main, 'factory', factory );


// EXPORTS //

module.exports = deepHasProp;
module.exports = main;
4 changes: 2 additions & 2 deletions has-arraybuffer-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasArrayBufferSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasArrayBufferSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-arrow-function-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasArrowFunctionSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasArrowFunctionSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-async-await-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

// MODULES //

var hasAsyncAwaitSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasAsyncAwaitSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-async-iterator-symbol-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasAsyncIteratorSymbolSupport = require( './main.js' ); // eslint-disable-line id-length
var main = require( './main.js' );


// EXPORTS //

module.exports = hasAsyncIteratorSymbolSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-bigint-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasBigIntSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasBigIntSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-class-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

// MODULES //

var hasClassSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasClassSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-dataview-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasDataViewSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasDataViewSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-define-properties-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasDefinePropertiesSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasDefinePropertiesSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-define-property-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasDefinePropertySupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasDefinePropertySupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-function-name-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasFunctionNameSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasFunctionNameSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-generator-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasGeneratorSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasGeneratorSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-globalthis-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasGlobalThisSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasGlobalThisSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-iterator-symbol-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasIteratorSymbolSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasIteratorSymbolSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-map-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasMapSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasMapSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-node-buffer-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasNodeBufferSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasNodeBufferSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-own-property/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@

// MODULES //

var hasOwnProp = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasOwnProp;
module.exports = main;
4 changes: 2 additions & 2 deletions has-property/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@

// MODULES //

var hasProp = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasProp;
module.exports = main;
4 changes: 2 additions & 2 deletions has-proxy-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasProxySupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasProxySupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-set-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasSetSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasSetSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-sharedarraybuffer-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasSharedArrayBufferSupport = require( './main.js' ); // eslint-disable-line id-length
var main = require( './main.js' );


// EXPORTS //

module.exports = hasSharedArrayBufferSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-symbol-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasSymbolSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasSymbolSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-tostringtag-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasToStringTagSupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasToStringTagSupport;
module.exports = main;
4 changes: 2 additions & 2 deletions has-wasm-support/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

// MODULES //

var hasWebAssemblySupport = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = hasWebAssemblySupport;
module.exports = main;
Loading

0 comments on commit 918f5c7

Please sign in to comment.