mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
78be0d0f1c
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>
6 lines
163 B
JavaScript
6 lines
163 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const availableMemory = process.availableMemory();
|
|
assert(typeof availableMemory, 'number');
|