Commit 932242e2 by Haohao Jiang

fix: print env keys

parent 9f3e0c39
// @ts-ignore
console.log('Hello world!') console.log('Hello world!')
console.log('当前可用的 ENV key 的前 3 个字母:');
// @ts-ignore
Object.keys(Bun.env).forEach(key => {
console.log(key.slice(0, 3));
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment