Inspired by https://github.com/sindresorhus/ts-extras/pull/8#discussion_r740023376 Bad: ```js t.is(x, true); t.is(x, false); ``` Good: ```js t.true(x); t.false(x); ```