Copie o código do código da seguinte forma:
//#region remove espaços
String.prototype.Trim=função(){
return this.replace(/(^/s*)|(/s*$)/g, "");
}
String.prototype.LTrim=função(){
return this.replace(/(^/s*)/g, "");
}
String.prototype.RTrim=função(){
return this.replace(/(/s*$)/g, "");
}
//#endregion