TypeUtil.isBoolean = function(value) {
        return (typeof value === 'boolean' || TypeUtil.toString(value) === '[object Boolean]');
    };