diff --git a/src/v4.js b/src/v4.js index 44bfa947..ec7352ec 100644 --- a/src/v4.js +++ b/src/v4.js @@ -2,11 +2,6 @@ import rng from './rng.js'; import bytesToUuid from './bytesToUuid.js'; function v4(options, buf, offset) { - if (typeof options === 'string') { - buf = options === 'binary' ? new Uint8Array(16) : null; - options = null; - } - options = options || {}; const rnds = options.random || (options.rng || rng)();