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 Jan 16, 2024
1 parent 49ad195 commit 4fbd690
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2023 The Stdlib Authors.
Copyright (c) 2016-2024 The Stdlib Authors.
6 changes: 3 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/index.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@ var filled = require( '@stdlib/array-base-filled' );
var hasIteratorSymbolSupport = require( '@stdlib/assert-has-iterator-symbol-support' );
var ITERATOR_SYMBOL = require( '@stdlib/symbol-iterator' );
var iterLength = require( '@stdlib/iter-length' );
var defaults = require( '@stdlib/array-defaults' );
var format = require( '@stdlib/string-format' );


// VARIABLES //

var HAS_ITERATOR_SYMBOL = hasIteratorSymbolSupport();
var DEFAULT_DTYPE = defaults.get( 'dtypes.default' );


// FUNCTIONS //
Expand Down Expand Up @@ -188,7 +190,7 @@ function filledarray() {
dtype = arguments[ nargs ];
nargs -= 1;
} else {
dtype = 'float64';
dtype = DEFAULT_DTYPE;
}
ctor = ctors( dtype );
if ( ctor === null ) {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"dependencies": {
"@stdlib/array-base-filled": "^0.1.0",
"@stdlib/array-ctors": "^0.1.0",
"@stdlib/array-defaults": "^0.1.0",
"@stdlib/assert-has-iterator-symbol-support": "^0.1.1",
"@stdlib/assert-is-arraybuffer": "^0.1.1",
"@stdlib/assert-is-collection": "^0.1.0",
Expand Down

0 comments on commit 4fbd690

Please sign in to comment.