mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 15:12:01 +03:00
25 lines
536 B
TypeScript
25 lines
536 B
TypeScript
import kleur from "kleur";
|
|
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) {
|
|
await waitFor(1000);
|
|
return `147 ${name}!!`;
|
|
}
|
|
|
|
function waitFor(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|