LCOV - code coverage report
Current view: top level - randomjs/utils - constants.ts (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 8 8 100.0 %
Date: 2021-03-12 10:43:40 Functions: 0 0 -

          Line data    Source code
       1           1 : export const SMALLEST_UNSAFE_INTEGER = 0x20000000000000;
       2           1 : export const LARGEST_SAFE_INTEGER = SMALLEST_UNSAFE_INTEGER - 1;
       3           1 : export const UINT32_MAX = -1 >>> 0;
       4           1 : export const UINT32_SIZE = UINT32_MAX + 1;
       5           1 : export const INT32_SIZE = UINT32_SIZE / 2;
       6           1 : export const INT32_MAX = INT32_SIZE - 1;
       7           1 : export const UINT21_SIZE = 1 << 21;
       8           1 : export const UINT21_MAX = UINT21_SIZE - 1;

Generated by: LCOV version 1.15