mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/52023 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
5 lines
163 B
JavaScript
5 lines
163 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const availableMemory = process.availableMemory();
|
|
assert(typeof availableMemory, 'number');
|