mashin_runtime 0.1.1

The mashin runtime engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
const core = globalThis.Deno.core;
const ops = core.ops;

function getEnv(key) {
  return ops.op_get_env(key) ?? undefined;
}

const env = {
  get: getEnv,
};

export { env };