Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisje committed Jun 26, 2015
1 parent 20604d7 commit dcbdd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es6-shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@
var hasStringTrimBug = ws.trim() || '\u0085\u002B'.trim().length !== 2;
if (hasStringTrimBug) {
delete String.prototype.trim;
var wsRegexpChars = '[' + ws + '][' + ws + ']*';
var wsRegexChars = '[' + ws + '][' + ws + ']*';
var trimBeginRegexp = new RegExp('^' + wsRegexChars);
var trimEndRegexp = new RegExp(wsRegexChars + '$');
defineProperties(String.prototype, {
Expand Down

0 comments on commit dcbdd5d

Please sign in to comment.