0.0.2 • Published 5 years ago

sweetch v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

sweetch 🎛

Switch as a function, you will be able to use it everywhere, mostly when native switch will produce syntax errors.

import sweetch from "sweetch";

const result = sweetch(
  key,
  ["a", 1],
  ["b", 2],
  ["c", 3],
  ["d", 4],
  ["e", 5],
  "default"
);

// if key === "a" result will be 1