/**
 * @author pierre
 */

YkeUI.YkeString = function() {};

/* Erase white space before and after the string param */
YkeUI.YkeString.Trim = function (str)
{
	try { return str.replace(/^\s+|\s+$/g, ''); }
	catch(e) { return -1; }
}
