summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/say-hello/1.0.0/say-hello.js
blob: 66d02cde56d090ee3c70dfeaa9f175d426e127d0 (plain)
1
2
3
4
5
import { sayHello } from "./index.js";
console.log(sayHello());
import path from "node:path";
import fs from "node:fs";
fs.writeSync(fs.openSync(path.join(process.env.INIT_CWD, "say-hello-output.txt"), "w"), sayHello());