uncertain
uncertain(
p,band?):boolean
Defined in: src/compose.ts:78
True when p sits in the open band around 0.5, where a probability means
“don’t know” rather than “medium”. Default band is 0.15, so 0.35 < p < 0.65.
Parameters
Section titled “Parameters”number
number = 0.15
Returns
Section titled “Returns”boolean
Example
Section titled “Example”import { uncertain } from "huncho";
uncertain(0.52); // trueuncertain(0.8); // falseuncertain(0.6, 0.05); // false