PR-URL: https://github.com/nodejs/node/pull/62633 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
7 lines
229 B
JavaScript
7 lines
229 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { spawnSync } = require('child_process');
|
|
const stateful = {
|
|
toString: common.mustCall(() => ';'),
|
|
};
|
|
spawnSync(process.execPath, ['-e', stateful], { stdio: 'ignore' });
|