mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
Bump to v3.9.0.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 "...".
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user