Skip to content

Commit d97787f

Browse files
xavdidtargos
authored andcommitted
typings: add JSDoc to os module functions
PR-URL: #38197 Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
1 parent 8acfe5c commit d97787f

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

lib/os.js

+72
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,17 @@ const {
8080
const getHomeDirectory = getCheckedFunction(_getHomeDirectory);
8181
const getHostname = getCheckedFunction(_getHostname);
8282
const getInterfaceAddresses = getCheckedFunction(_getInterfaceAddresses);
83+
/**
84+
* @returns {string}
85+
*/
8386
const getOSRelease = () => release;
87+
/**
88+
* @returns {string}
89+
*/
8490
const getOSType = () => type;
91+
/**
92+
* @returns {string}
93+
*/
8594
const getOSVersion = () => version;
8695

8796
getFreeMem[SymbolToPrimitive] = () => getFreeMem();
@@ -97,11 +106,30 @@ const kEndianness = isBigEndian ? 'BE' : 'LE';
97106

98107
const avgValues = new Float64Array(3);
99108

109+
/**
110+
* @returns {[number, number, number]}
111+
*/
100112
function loadavg() {
101113
getLoadAvg(avgValues);
102114
return [avgValues[0], avgValues[1], avgValues[2]];
103115
}
104116

117+
/**
118+
* Returns an array of objects containing information about each
119+
* logical CPU core.
120+
*
121+
* @returns {Array<{
122+
* model: string
123+
* speed: number
124+
* times: {
125+
* user: number
126+
* nice: number
127+
* sys: number
128+
* idle: number
129+
* irq: number
130+
* }
131+
* }>}
132+
*/
105133
function cpus() {
106134
// [] is a bugfix for a regression introduced in 51cea61
107135
const data = getCPUs() || [];
@@ -123,16 +151,25 @@ function cpus() {
123151
return result;
124152
}
125153

154+
/**
155+
* @returns {string}
156+
*/
126157
function arch() {
127158
return process.arch;
128159
}
129160
arch[SymbolToPrimitive] = () => process.arch;
130161

162+
/**
163+
* @returns {string}
164+
*/
131165
function platform() {
132166
return process.platform;
133167
}
134168
platform[SymbolToPrimitive] = () => process.platform;
135169

170+
/**
171+
* @returns {string}
172+
*/
136173
function tmpdir() {
137174
var path;
138175
if (isWindows) {
@@ -155,6 +192,9 @@ function tmpdir() {
155192
}
156193
tmpdir[SymbolToPrimitive] = () => tmpdir();
157194

195+
/**
196+
* @returns {'BE' | 'LE'}
197+
*/
158198
function endianness() {
159199
return kEndianness;
160200
}
@@ -204,6 +244,17 @@ function getCIDR(address, netmask, family) {
204244
return `${address}/${ones}`;
205245
}
206246

247+
/**
248+
* @returns {Record<string, Array<{
249+
* address: string
250+
* netmask: string
251+
* family: 'IPv4' | 'IPv6'
252+
* mac: string
253+
* internal: boolean
254+
* scopeid: number
255+
* cidr: string | null
256+
* }>>}
257+
*/
207258
function networkInterfaces() {
208259
const data = getInterfaceAddresses();
209260
const result = {};
@@ -234,6 +285,11 @@ function networkInterfaces() {
234285
return result;
235286
}
236287

288+
/**
289+
* @param {number} pid
290+
* @param {number} priority
291+
* @returns {void}
292+
*/
237293
function setPriority(pid, priority) {
238294
if (priority === undefined) {
239295
priority = pid;
@@ -249,6 +305,10 @@ function setPriority(pid, priority) {
249305
throw new ERR_SYSTEM_ERROR(ctx);
250306
}
251307

308+
/**
309+
* @param {number} pid
310+
* @returns {number}
311+
*/
252312
function getPriority(pid) {
253313
if (pid === undefined)
254314
pid = 0;
@@ -264,6 +324,18 @@ function getPriority(pid) {
264324
return priority;
265325
}
266326

327+
/**
328+
* @param {{ encoding?: string }} options If `encoding` is set to `'buffer'`,
329+
* the `username`, `shell`, and `homedir` values will be `Buffer` instances.
330+
* Default: `'utf8'`
331+
* @returns {{
332+
* uid: number
333+
* gid: number
334+
* username: string
335+
* homedir: string
336+
* shell: string | null
337+
* }}
338+
*/
267339
function userInfo(options) {
268340
if (typeof options !== 'object')
269341
options = null;

0 commit comments

Comments
 (0)