We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d9063 commit 3be5afcCopy full SHA for 3be5afc
lib/main.js
@@ -79,7 +79,7 @@ function iterator( mu, sigma, options ) {
79
var FLG;
80
var i;
81
if ( !isNumber( mu ) || isnan( mu ) ) {
82
- throw new TypeError( format( 'invalid argument. First argument must be a number primitive and not `NaN`. Value: `%s`.', mu ) );
+ throw new TypeError( format( 'invalid argument. First argument must be a number and not `NaN`. Value: `%s`.', mu ) );
83
}
84
if ( !isPositive( sigma ) ) {
85
throw new TypeError( format( 'invalid argument. Second argument must be a positive number. Value: `%s`.', sigma ) );
0 commit comments