UNPKG

multiplanner

Version:

Tool om polydestinale reizen te plannen over het Nederlandse spoornet.

10 lines (9 loc) 265 B
const invertedSwitch = (switches, waarde) => { for (const [test, succes] of switches) { const testResultaat = test(waarde); if (testResultaat) { return succes(waarde, testResultaat); } } }; export default invertedSwitch;