We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16cda94 commit bfcdc49Copy full SHA for bfcdc49
packages/optimizely-sdk/lib/utils/fns/index.ts
@@ -13,7 +13,7 @@
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
-import v4 from 'uuid';
+import _uuid from 'uuid';
17
18
const MAX_SAFE_INTEGER_LIMIT = Math.pow(2, 53);
19
@@ -62,7 +62,7 @@ function isNumber(value: unknown): boolean {
62
}
63
64
export function uuid(): string {
65
- return v4()
+ return _uuid.v4()
66
67
68
export type Omit<T, K> = Pick<T, Exclude<keyof T, K>>
0 commit comments