Bump to v3.9.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:50:42 -08:00
parent 26837e7fe2
commit 81e41ca0c8
89 changed files with 1033 additions and 1088 deletions

View File

@@ -12,7 +12,7 @@ define(['../internal/baseToString', '../internal/escapeHtmlChar'], function(base
* use a third-party library like [_he_](https://mths.be/he).
*
* Though the ">" character is escaped for symmetry, characters like
* ">" and "/" don't require escaping in HTML and have no special meaning
* ">" and "/" don't need escaping in HTML and have no special meaning
* unless they're part of a tag or unquoted attribute value.
* See [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)
* (under "semi-related fun fact") for more details.

View File

@@ -8,7 +8,7 @@ define(['../internal/baseToString', '../internal/createPadding', '../internal/ro
var nativeIsFinite = root.isFinite;
/**
* Pads `string` on the left and right sides if it is shorter than `length`.
* Pads `string` on the left and right sides if it's shorter than `length`.
* Padding characters are truncated if they can't be evenly divided by `length`.
*
* @static

View File

@@ -1,7 +1,7 @@
define(['../internal/createPadDir'], function(createPadDir) {
/**
* Pads `string` on the left side if it is shorter than `length`. Padding
* Pads `string` on the left side if it's shorter than `length`. Padding
* characters are truncated if they exceed `length`.
*
* @static

View File

@@ -1,7 +1,7 @@
define(['../internal/createPadDir'], function(createPadDir) {
/**
* Pads `string` on the right side if it is shorter than `length`. Padding
* Pads `string` on the right side if it's shorter than `length`. Padding
* characters are truncated if they exceed `length`.
*
* @static

View File

@@ -8,7 +8,7 @@ define(['../internal/baseToString', '../internal/isIterateeCall', '../lang/isObj
var reFlags = /\w*$/;
/**
* Truncates `string` if it is longer than the given maximum string length.
* Truncates `string` if it's longer than the given maximum string length.
* The last characters of the truncated string are replaced with the omission
* string which defaults to "...".
*