Subversion Repositories JSX

Compare Revisions

Last modification

Ignore whitespace Rev 632 → Rev 633

/trunk/regexp.js
249,7 → 249,7
reduced = "";
}
 
if (reduced != "")
if (reduced !== "")
{
jsx.warn(
"jsx.regexp.RegExp: Combined negative escapes in character classes"
1424,7 → 1424,7
* @return {string}
*/
escape: function (s) {
if (arguments.length == 0 && _isString(this.constructor))
if (arguments.length === 0 && _isString(this.constructor))
{
s = this;
}