You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importSwitchfrom"@raini/switch";constmatch=x=>Switch(x).case(1,"matches 1!").case(2,"matches 2!").default("does not match!");console.log(match(1));// matches 1!console.log(match(2));// matches 2!console.log(match(3));// does not match!
Predicate function matching
importSwitchfrom"@raini/switch";constmatch=x=>Switch(x).case(x=>x>10,"greater than 10!").case(x=>x<10,"less than 10!").default("equals 10!");console.log(match(1));// less than 10!console.log(match(11));// greater than 10!console.log(match(10));// equals 10!