TypeUtil.isSymbol = function(value) {
        return (typeof value === 'symbol' || TypeUtil.toString(value) === '[object Symbol]');
    };