﻿// JScript 文件

function jsTrim(stringToTrim) 
{
   return stringToTrim.replace(/^\s+|\s+$/g,"");
}
