Searched refs:disableEntropyCache (Results 1 – 4 of 4) sorted by relevance
8 disableEntropyCache: [0, 1], property11 function main({ n, disableEntropyCache }) { field12 disableEntropyCache = !!disableEntropyCache;15 randomUUID({ disableEntropyCache }); field
46 testMatch(randomUUID({ disableEntropyCache: true })); property47 testMatch(randomUUID({ disableEntropyCache: true })); property48 testMatch(randomUUID({ disableEntropyCache: true })); property49 testMatch(randomUUID({ disableEntropyCache: true })); property55 assert.throws(() => randomUUID({ disableEntropyCache: '' }), { property
409 disableEntropyCache = false,412 validateBoolean(disableEntropyCache, 'options.disableEntropyCache');414 return disableEntropyCache ? getUnbufferedUUID() : getBufferedUUID();
5118 * `disableEntropyCache` {boolean} By default, to improve performance,5121 without using the cache, set `disableEntropyCache` to `true`.