UNPKG

async-test-util

Version:

Util-functions that are be useful in async tests

7 lines 156 B
/** * returns a random boolean * @link https://stackoverflow.com/a/36756480 */ export default function randomBoolean() { return Math.random() >= 0.5; }