mirror of https://github.com/nodejs/node.git
5 lines
56 B
JavaScript
5 lines
56 B
JavaScript
|
'use strict';
|
||
|
let x = 1;
|
||
|
x = x + 1;
|
||
|
module.exports = x;
|