more node

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2021-05-25 01:00:00 +00:00
parent 9719023feb
commit 13f7303db1
23 changed files with 724 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env node
const assert = require('assert');
const notmain = require('./notmain.js')
assert(notmain.x === 1)
assert(notmain.y === 2)

View File

@@ -0,0 +1,2 @@
exports.x = 1;
exports.y = 2;