TypeUtil.isString = function(value) {
        return (typeof value === 'string' || TypeUtil.toString(value) === '[object String]');
    };