@@ -220,6 +220,22 @@ system and expressed as a fractional number.
220
220
The load average is a Unix-specific concept. On Windows, the return value is
221
221
always ` [0, 0, 0] ` .
222
222
223
+ ## ` os.machine() `
224
+
225
+ <!-- YAML
226
+ added: v18.9.0
227
+ -->
228
+
229
+ * Returns {string}
230
+
231
+ Returns the machine type as a string, such as ` arm ` , ` arm64 ` , ` aarch64 ` ,
232
+ ` mips ` , ` mips64 ` , ` ppc64 ` , ` ppc64le ` , ` s390 ` , ` s390x ` , ` i386 ` , ` i686 ` , ` x86_64 ` .
233
+
234
+ On POSIX systems, the machine type is determined by calling
235
+ [ ` uname(3) ` ] [ ] . On Windows, ` RtlGetVersion() ` is used, and if it is not
236
+ available, ` GetVersionExW() ` will be used. See
237
+ < https://en.wikipedia.org/wiki/Uname#Examples > for more information.
238
+
223
239
## ` os.networkInterfaces() `
224
240
225
241
<!-- YAML
@@ -452,22 +468,6 @@ On POSIX systems, the operating system release is determined by calling
452
468
available, ` GetVersionExW() ` will be used. See
453
469
< https://en.wikipedia.org/wiki/Uname#Examples > for more information.
454
470
455
- ## ` os.machine() `
456
-
457
- <!-- YAML
458
- added: v18.9.0
459
- -->
460
-
461
- * Returns {string}
462
-
463
- Returns the machine type as a string, such as ` arm ` , ` arm64 ` , ` aarch64 ` ,
464
- ` mips ` , ` mips64 ` , ` ppc64 ` , ` ppc64le ` , ` s390 ` , ` s390x ` , ` i386 ` , ` i686 ` , ` x86_64 ` .
465
-
466
- On POSIX systems, the machine type is determined by calling
467
- [ ` uname(3) ` ] [ ] . On Windows, ` RtlGetVersion() ` is used, and if it is not
468
- available, ` GetVersionExW() ` will be used. See
469
- < https://en.wikipedia.org/wiki/Uname#Examples > for more information.
470
-
471
471
## OS constants
472
472
473
473
The following constants are exported by ` os.constants ` .
0 commit comments