What about Boolean Objects that are either true or false? I'm considering those an edge case at the moment, but there might be value. At the very least I think being able to detect a boolean object would be appropriate, but I am doubtful of its utility.
var f = new Boolean(false)
is.true(f) // false
is.false(f) // true
is.booleanObject(f) // true
Just want to expand the Boolean checks a little.
What about Boolean Objects that are either true or false? I'm considering those an edge case at the moment, but there might be value. At the very least I think being able to detect a boolean object would be appropriate, but I am doubtful of its utility.