Skip to content

Commit b9fd85b

Browse files
committed
docs: re-generate README
1 parent eea07e8 commit b9fd85b

File tree

1 file changed

+14
-27
lines changed

1 file changed

+14
-27
lines changed

README.md

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -129,23 +129,16 @@ Example: In-place generation of two binary IDs
129129
const arr = new Array();
130130
uuidv1(null, arr, 0); //
131131
// [
132-
// 44, 94, 164,
133-
// 192, 64, 103,
134-
// 17, 233, 146,
135-
// 52, 155, 29,
136-
// 235, 77, 59,
137-
// 125
132+
// 44, 94, 164, 192, 64, 103,
133+
// 17, 233, 146, 52, 155, 29,
134+
// 235, 77, 59, 125
138135
// ]
139136
uuidv1(null, arr, 16); //
140137
// [
141-
// 44, 94, 164, 192,
142-
// 64, 103, 17, 233,
143-
// 146, 52, 155, 29,
144-
// 235, 77, 59, 125,
145-
// 44, 94, 164, 193,
146-
// 64, 103, 17, 233,
147-
// 146, 52, 155, 29,
148-
// 235, 77, 59, 125
138+
// 44, 94, 164, 192, 64, 103, 17, 233,
139+
// 146, 52, 155, 29, 235, 77, 59, 125,
140+
// 44, 94, 164, 193, 64, 103, 17, 233,
141+
// 146, 52, 155, 29, 235, 77, 59, 125
149142
// ]
150143

151144
```
@@ -217,23 +210,17 @@ Example: Generate two IDs in a single buffer
217210
const buffer = new Array();
218211
uuidv4(null, buffer, 0); //
219212
// [
220-
// 155, 29, 235,
221-
// 77, 59, 125,
222-
// 75, 173, 155,
223-
// 221, 43, 13,
224-
// 123, 61, 203,
213+
// 155, 29, 235, 77, 59,
214+
// 125, 75, 173, 155, 221,
215+
// 43, 13, 123, 61, 203,
225216
// 109
226217
// ]
227218
uuidv4(null, buffer, 16); //
228219
// [
229-
// 155, 29, 235, 77,
230-
// 59, 125, 75, 173,
231-
// 155, 221, 43, 13,
232-
// 123, 61, 203, 109,
233-
// 27, 157, 107, 205,
234-
// 187, 253, 75, 45,
235-
// 155, 93, 171, 141,
236-
// 251, 189, 75, 237
220+
// 155, 29, 235, 77, 59, 125, 75, 173,
221+
// 155, 221, 43, 13, 123, 61, 203, 109,
222+
// 27, 157, 107, 205, 187, 253, 75, 45,
223+
// 155, 93, 171, 141, 251, 189, 75, 237
237224
// ]
238225

239226
```

0 commit comments

Comments
 (0)