Fix lodashBizarro tests for trim, trimLeft, and trimRight.

This commit is contained in:
John-David Dalton
2014-01-03 11:05:09 -06:00
parent c07ef0d92a
commit 0b4029f7a1
2 changed files with 15 additions and 28 deletions

View File

@@ -45,13 +45,13 @@
String.prototype.contains = String.prototype._contains ? function() {} : Boolean;
String.prototype._trim = String.prototype.trim;
String.prototype.trim = String.prototype._trim ? function() {} : Boolean;
String.prototype.trim = String.prototype._trim ? function() {} : String;
String.prototype._trimLeft = String.prototype.trimLeft;
String.prototype.trimLeft = String.prototype._trimLeft ? function() {} : Boolean;
String.prototype.trimLeft = String.prototype._trimLeft ? function() {} : String;
String.prototype._trimRight = String.prototype.trimRight;
String.prototype.trimRight = String.prototype._trimRight ? function() {} : Boolean;
String.prototype.trimRight = String.prototype._trimRight ? function() {} : String;
window.WinRTError = Error;