You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [`2366870`](https://github.com/stdlib-js/stdlib/commit/23668709f2da0d4a3e3f5eb401eebaf03eb328cd) - **refactor:** use const double for parameter in `stats/base/dists/betaprime/logpdf` [(#6452)](https://github.com/stdlib-js/stdlib/pull/6452) _(by Neeraj Pathak)_
returnnewTypeError(format('invalid option. `%s` option must be one of the following: "%s". Option: `%s`.','missing',MISSING.join('", "'),opts.missing));
returnnewError(format('invalid option. `%s` option must be one of the following: "%s". Option: `%s`.','alternative',ALTERNATIVE_VALUES.join('", "'),opts.alternative));
75
78
}
76
79
}
@@ -100,7 +103,7 @@ function validate( opts, options ) {
100
103
if(!isString(opts.zeroMethod)){
101
104
returnnewTypeError(format('invalid option. `%s` option must be a string. Option: `%s`.','zeroMethod',opts.alternative));
returnnewError(format('invalid option. `%s` option must be one of the following: "%s". Option: `%s`.','zeroMethod',ZERO_METHOD_VALUES.join('", "'),opts.zeroMethod));
0 commit comments