UNPKG

@fakes/media-devices

Version:

A interactive fake implementation of MediaDevices interface in the browser for testing

13 lines (12 loc) 428 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uuidV4 = void 0; const uuidV4 = () => { let dt = new Date().getTime(); return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { const r = (dt + Math.random() * 16) % 16 | 0; dt = Math.floor(dt / 16); return (c == 'x' ? r : (r & 0x3) | 0x8).toString(16); }); }; exports.uuidV4 = uuidV4;