12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
|
// not supported
|
||
|
var {existsSync} = require('node:fs');
|
||
|
var process = require('process');
|
||
|
|
||
|
console.log('a')
|
||
|
|
||
|
function x(){
|
||
|
return {x:3};
|
||
|
}
|
||
|
|
||
|
var newLocal = existsSync("./package.json");
|
||
|
console.log(`Read some data`,newLocal);
|