You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
259 B
JavaScript

"use strict";
const matchValue = require("./");
let flag = "a"; // Hardcoded for example
let mode = matchValue(flag, {
r: "readOnly",
rw: "readWrite",
a: "appendOnly",
_: () => `unknown:${someExpensiveCall(flag)}`
});
console.log(mode); // appendOnly