Manually fix issues that eslint --fix couldn't do automatically. Backport-PR-URL: https://github.com/nodejs/node/pull/11775 PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
10 lines
352 B
JavaScript
10 lines
352 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// check for existence
|
|
assert(process.config.variables.hasOwnProperty('node_module_version'));
|
|
|
|
// ensure that `node_module_version` is an Integer > 0
|
|
assert(Number.isInteger(process.config.variables.node_module_version));
|
|
assert(process.config.variables.node_module_version > 0);
|