Skip to content

Commit 27b9db1

Browse files
authoredNov 6, 2021
prettier --fix (#592)
chore: npm run prettier:fix
1 parent 343e031 commit 27b9db1

File tree

1 file changed

+2
-32
lines changed

1 file changed

+2
-32
lines changed
 

‎README_js.md

+2-32
Original file line numberDiff line numberDiff line change
@@ -128,22 +128,7 @@ Example:
128128
import { stringify as uuidStringify } from 'uuid';
129129

130130
const uuidBytes = [
131-
0x6e,
132-
0xc0,
133-
0xbd,
134-
0x7f,
135-
0x11,
136-
0xc0,
137-
0x43,
138-
0xda,
139-
0x97,
140-
0x5e,
141-
0x2a,
142-
0x8a,
143-
0xd9,
144-
0xeb,
145-
0xae,
146-
0x0b,
131+
0x6e, 0xc0, 0xbd, 0x7f, 0x11, 0xc0, 0x43, 0xda, 0x97, 0x5e, 0x2a, 0x8a, 0xd9, 0xeb, 0xae, 0x0b,
147132
];
148133

149134
uuidStringify(uuidBytes); // RESULT
@@ -229,22 +214,7 @@ import { v4 as uuidv4 } from 'uuid';
229214

230215
const v4options = {
231216
random: [
232-
0x10,
233-
0x91,
234-
0x56,
235-
0xbe,
236-
0xc4,
237-
0xfb,
238-
0xc1,
239-
0xea,
240-
0x71,
241-
0xb4,
242-
0xef,
243-
0xe1,
244-
0x67,
245-
0x1c,
246-
0x58,
247-
0x36,
217+
0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea, 0x71, 0xb4, 0xef, 0xe1, 0x67, 0x1c, 0x58, 0x36,
248218
],
249219
};
250220
uuidv4(v4options); // RESULT

0 commit comments

Comments
 (0)
Please sign in to comment.