immediate.mjs 93 B

12345
  1. function mixImmediate(a, b) {
  2. return (p) => (p > 0 ? b : a);
  3. }
  4. export { mixImmediate };