mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 06:54:03 +03:00
25 lines
565 B
TypeScript
25 lines
565 B
TypeScript
import kleur from "kleur";
|
|
import something from './something.ts'
|
|
kleur.enabled = true;
|
|
|
|
export async function environmentVariable(name) {
|
|
const result = process.env[name];
|
|
if (result) {
|
|
return result;
|
|
} else {
|
|
throw `No environment variable called ${kleur
|
|
.yellow()
|
|
.underline(name)}\n\nAvailable:\n\n${Object.keys(process.env)
|
|
.slice(0, 5)
|
|
.join("\n")}`;
|
|
}
|
|
}
|
|
|
|
export async function hello(name) {
|
|
return `${something} 149 ${name}!!`;
|
|
}
|
|
|
|
function waitFor(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|