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 22, 2023
1 parent a4b61b4 commit 14db848
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
21 changes: 11 additions & 10 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,37 @@
# Contributors listed in alphabetical order.

Ali Salesi <[email protected]>
Amit Jimiwal <[email protected]>
Athan Reines <[email protected]>
Brendan Graetz <[email protected]>
Bruno Fenzl <[email protected]>
Christopher Dambamuromo <[email protected]>
Dan Rose <[email protected]>
Dominik Moritz <[email protected]>
Dorrin Sotoudeh <[email protected]>
Frank Kovacs <[email protected]>
Harshita Kalani <[email protected].com>
James <[email protected]>
Harshita Kalani <harshitakalani02@gmail.com>
James Gelok <[email protected]>
Jithin KS <[email protected]>
Joey Reed <[email protected]>
Jordan-Gallivan <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
KATTA NAGA NITHIN <[email protected]>
Marcus <[email protected]>
Marcus Fantham <[email protected]>
Matt Cochrane <[email protected]>
Milan Raj <[email protected]>
Momtchil Momtchev <[email protected]>
Naresh Jagadeesan <[email protected]>
Naresh Jagadeesan <[email protected]>
Nithin Katta <[email protected]>
Ognjen Jevremović <[email protected]>
Philipp Burckhardt <[email protected]>
Pranav <[email protected]>
Pranav Goswami <[email protected]>
Ricky Reusser <[email protected]>
Roman Stetsyk <[email protected]>
Ryan Seal <[email protected]>
Seyyed Parsa Neshaei <[email protected]>
Shraddheya Shendre <[email protected]>
Stephannie Jiménez Gacha <[email protected]>
Yernar Yergaziyev <[email protected]>
dorrin-sot <[email protected]>
drunken_devv <[email protected]>
orimiles5 <[email protected]>
rei2hu <[email protected]>
rei2hu <[email protected]>
4 changes: 2 additions & 2 deletions lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var setReadOnlyAccessor = require( '@stdlib/utils-define-nonenumerable-read-only
var setReadWriteAccessor = require( '@stdlib/utils-define-nonenumerable-read-write-accessor' );
var constantFunction = require( '@stdlib/utils-constant-function' );
var noop = require( '@stdlib/utils-noop' );
var copy = require( '@stdlib/utils-copy' );
var assign = require( '@stdlib/object-assign' );
var isNumber = require( '@stdlib/assert-is-number' ).isPrimitive;
var isnan = require( '@stdlib/math-base-assert-is-nan' );
var isObject = require( '@stdlib/assert-is-plain-object' );
Expand Down Expand Up @@ -88,7 +88,7 @@ function iterator( mu, beta, options ) {
if ( !isObject( options ) ) {
throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
}
opts = copy( options, 1 );
opts = assign( {}, options );
if ( hasOwnProp( opts, 'iter' ) ) {
if ( !isNonNegativeInteger( opts.iter ) ) {
throw new TypeError( format( 'invalid option. `%s` option must be a nonnegative integer. Option: `%s`.', 'iter', opts.iter ) );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
"@stdlib/assert-is-positive-number": "^0.0.7",
"@stdlib/constants-float64-max": "^0.0.8",
"@stdlib/math-base-assert-is-nan": "^0.0.8",
"@stdlib/object-assign": "github:stdlib-js/object-assign#main",
"@stdlib/random-base-gumbel": "^0.0.6",
"@stdlib/string-format": "^0.0.3",
"@stdlib/symbol-iterator": "^0.0.7",
"@stdlib/types": "^0.0.14",
"@stdlib/utils-constant-function": "^0.0.8",
"@stdlib/utils-copy": "^0.0.7",
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.0.7",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.0.7",
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.0.7",
Expand Down

0 comments on commit 14db848

Please sign in to comment.