Bluesky Discord GitHub LinkedIn Mastodon

Frequently Asked Questions

testing it out with rich content

const best = 3;
const worst = 5;
const times = 1859;

const it = console.log;
const was =
  (_, ...vals) =>
    (num) =>
      [...Array(num).keys()].filter((e) => e % vals[0] === 0);

it(was`the ${best} of`(times));
it(was`the ${worst} of`(times));