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 Jul 7, 2024
1 parent 72a7bef commit 3c88eeb
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-06-21)
## Unreleased (2024-07-07)

<section class="packages">

Expand Down Expand Up @@ -1693,6 +1693,7 @@ A total of 10 people contributed to this release. Thank you to the following con

<details>

- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`a5c9e56`](https://github.com/stdlib-js/stdlib/commit/a5c9e56a3ea7198ae4fe3248d4bfaa9e1d19bfcd) - **feat:** add `assert/is-same-booleanarray` [(#2401)](https://github.com/stdlib-js/stdlib/pull/2401) _(by Jaysukh Makvana, Athan Reines)_
- [`7c36ea3`](https://github.com/stdlib-js/stdlib/commit/7c36ea3437d16b7ce4fd86d76636b5a5d77d04c3) - **feat:** add `assert/is-booleanarray` [(#2299)](https://github.com/stdlib-js/stdlib/pull/2299) _(by Jaysukh Makvana, Athan Reines)_
- [`3a3b1e0`](https://github.com/stdlib-js/stdlib/commit/3a3b1e08f73a54c5ee46d73045805aee0bb1196d) - **docs:** update package URLs [(##2269)](#2269) _(by stdlib-bot)_
Expand Down
6 changes: 3 additions & 3 deletions is-nonpositive-finite/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

'use strict';

var NINF = require('@stdlib/constants/float64/ninf');
var NINF = require( '@stdlib/constants/float64/ninf' );
var isNonPositiveFinite = require( './../lib' );

console.log( isNonPositiveFinite( -2 ));
console.log( isNonPositiveFinite( -2 ) );
// => true

console.log( isNonPositiveFinite( -2.99 ));
console.log( isNonPositiveFinite( -2.99 ) );
// => true

console.log( isNonPositiveFinite( NINF ) );
Expand Down
2 changes: 1 addition & 1 deletion is-nonpositive-finite/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// MODULES //

var NINF = require('@stdlib/constants/float64/ninf');
var NINF = require( '@stdlib/constants/float64/ninf' );
var isPrimitive = require( './primitive.js' );
var isObject = require( './object.js' );

Expand Down
2 changes: 1 addition & 1 deletion is-nonpositive-finite/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var tape = require( 'tape' );
var NINF = require('@stdlib/constants/float64/ninf');
var NINF = require( '@stdlib/constants/float64/ninf' );
var Number = require( '@stdlib/number/ctor' );
var isNonPositiveFinite = require( './../lib/main.js' );

Expand Down
4 changes: 2 additions & 2 deletions is-well-formed-string/lib/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var isString = require('./../../is-string');
var isWellFormed = require('./iswellformed.js');
var isString = require( './../../is-string' );
var isWellFormed = require( './iswellformed.js' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion is-well-formed-string/lib/primitive.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var isWellFormed = require('./iswellformed.js');
var isWellFormed = require( './iswellformed.js' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion napi/equal-typedarray-types/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var addon = require( './../src/addon.node' );
* var typedarray = require( '@stdlib/array/typed' );
*
* var x = typedarray( 10, 'float64' );
* var y = typedarray( x.length, 'float64');
* var y = typedarray( x.length, 'float64' );
*
* wrapper( x, y );
*/
Expand Down

0 comments on commit 3c88eeb

Please sign in to comment.