UNPKG
@mhysko/s-uuid
Version:
latest (1.1.0)
1.1.0
1.0.4
1.0.3
1.0.2
1.0.0
Translate standard UUID to Base68 format and back
github.com/mvhysko/s-uuid
mvhysko/s-uuid
@mhysko/s-uuid
/
dist
/
cjs
/
encodings.js
11 lines
(10 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
encodings
=
void
0
;
exports
.
encodings
= {
BIN
:
'01'
,
OCT
:
'01234567'
,
DEC
:
'0123456789'
,
HEX
:
'0123456789abcdef'
,
BASE58
:
'123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
, };