summaryrefslogtreecommitdiffstats
path: root/src/consts.ts
blob: dd1d5d647c7f2bb23066892d28d0cde86747c144 (plain) (blame)
1
2
3
4
5
6
export let _zi = -2147483648;
export function zi() {
  if (_zi + 1 > 2147483647)
    _zi = -2147483648;
  return (_zi++).toString();
}