booWho(true) should return true.
    testString: assert.strictEqual(booWho(true), true);
  - text: booWho(false) should return true.
    testString: assert.strictEqual(booWho(false), true);
  - text: booWho([1, 2, 3]) should return false.
    testString: assert.strictEqual(booWho([1, 2, 3]), false);
  - text: booWho([].slice) should return false.
    testString: assert.strictEqual(booWho([].slice), false);
  - text: 'booWho({ "a": 1 }) should return false.'
    testString: 'assert.strictEqual(booWho({ "a": 1 }), false);'
  - text: booWho(1) should return false.
    testString: assert.strictEqual(booWho(1), false);
  - text: booWho(NaN) should return false.
    testString: assert.strictEqual(booWho(NaN), false);
  - text: booWho("a") should return false.
    testString: assert.strictEqual(booWho("a"), false);
  - text: booWho("true") should return false.
    testString: assert.strictEqual(booWho("true"), false);
  - text: booWho("false") should return false.
    testString: assert.strictEqual(booWho("false"), false);
```