
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@stdlib/assert-is-probability
Advanced tools
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Test if a value is a probability.
A probability is defined as a numeric value on the interval [0,1].
npm install @stdlib/assert-is-probability
var isProbability = require( '@stdlib/assert-is-probability' );
Tests if a value is a probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability( 0.5 );
// returns true
bool = isProbability( new Number( 0.5 ) );
// returns true
bool = isProbability( 3.14 );
// returns false
bool = isProbability( -5.0 );
// returns false
bool = isProbability( NaN );
// returns false
bool = isProbability( null );
// returns false
Tests if a value is a primitive probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability.isPrimitive( 0.33 );
// returns true
bool = isProbability.isPrimitive( new Number( 0.33 ) );
// returns false
Tests if a value is a Number object having a value which is a probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability.isObject( 0.11 );
// returns false
bool = isProbability.isObject( new Number( 0.11 ) );
// returns true
var Number = require( '@stdlib/number-ctor' );
var isProbability = require( '@stdlib/assert-is-probability' );
var bool = isProbability( 0.5 );
// returns true
bool = isProbability( new Number( 0.5 ) );
// returns true
bool = isProbability( 0.0 );
// returns true
bool = isProbability( 1.0 );
// returns true
bool = isProbability( 3.14 );
// returns false
bool = isProbability( -5.0 );
// returns false
bool = isProbability( NaN );
// returns false
bool = isProbability( '0.5' );
// returns false
bool = isProbability( null );
// returns false
@stdlib/assert-is-number: test if a value is a number.This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.
FAQs
Test if a value is a probability.
The npm package @stdlib/assert-is-probability receives a total of 2,812 weekly downloads. As such, @stdlib/assert-is-probability popularity was classified as popular.
We found that @stdlib/assert-is-probability demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.