Bump to v3.7.0.

This commit is contained in:
jdalton
2015-04-15 21:06:16 -07:00
parent d58549ce0b
commit 863bb301bb
120 changed files with 1653 additions and 812 deletions

View File

@@ -29,7 +29,7 @@ function endsWith(string, target, position) {
target = (target + '');
var length = string.length;
position = typeof position == 'undefined'
position = position === undefined
? length
: nativeMin(position < 0 ? 0 : (+position || 0), length);