mirror of https://github.com/nodejs/node.git
6 lines
97 B
JavaScript
6 lines
97 B
JavaScript
|
'use strict';
|
||
|
const { add } = require('./other');
|
||
|
|
||
|
const sum = add(40, 2);
|
||
|
module.exports = sum;
|