mirror of https://gitee.com/openkylin/nodejs.git
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
![]() |
'use strict';
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const nativeProcess = require('process');
|
||
|
// require('process') should return global process reference
|
||
|
assert.strictEqual(nativeProcess, process);
|