UNPKG

async-test-util

Version:

Util-functions that are be useful in async tests

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