{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\f0\fs20 /**\par
 * Extensions to the String object\par
 * \par
 * \par
 */\par
\par
\par
/**\par
 * Remove White Space from start and/or end of given string\par
 * White Space is defined as:\par
 *   Space, Carriage Return, newline, form feed, TABs, Vertical TABs\par
 * \par
 * NOTE: This function is attachect to the string object:\par
 * <code>\par
 *   var str = "Hello  ";\par
 *   str.trim();\par
 *   alert(str);\par
 * </code>\par
 */\par
String.prototype.trim = function()\par
\{\par
   return this.replace(/^\\s+|\\s+$/g, "");\par
}
 