mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Bump to v3.1.0.
This commit is contained in:
committed by
John-David Dalton
parent
3b2df88eab
commit
1608d89174
@@ -22,7 +22,7 @@ define(['../internal/createCompounder'], function(createCompounder) {
|
||||
*/
|
||||
var camelCase = createCompounder(function(result, word, index) {
|
||||
word = word.toLowerCase();
|
||||
return index ? (result + word.charAt(0).toUpperCase() + word.slice(1)) : word;
|
||||
return result + (index ? (word.charAt(0).toUpperCase() + word.slice(1)) : word);
|
||||
});
|
||||
|
||||
return camelCase;
|
||||
|
||||
@@ -14,10 +14,10 @@ define(['../internal/createCompounder'], function(createCompounder) {
|
||||
* _.snakeCase('Foo Bar');
|
||||
* // => 'foo_bar'
|
||||
*
|
||||
* _.snakeCase('--foo-bar');
|
||||
* _.snakeCase('fooBar');
|
||||
* // => 'foo_bar'
|
||||
*
|
||||
* _.snakeCase('fooBar');
|
||||
* _.snakeCase('--foo-bar');
|
||||
* // => 'foo_bar'
|
||||
*/
|
||||
var snakeCase = createCompounder(function(result, word, index) {
|
||||
|
||||
29
string/startCase.js
Normal file
29
string/startCase.js
Normal file
@@ -0,0 +1,29 @@
|
||||
define(['../internal/createCompounder'], function(createCompounder) {
|
||||
|
||||
/**
|
||||
* Converts `string` to start case.
|
||||
* See [Wikipedia](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage)
|
||||
* for more details.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @category String
|
||||
* @param {string} [string=''] The string to convert.
|
||||
* @returns {string} Returns the start cased string.
|
||||
* @example
|
||||
*
|
||||
* _.startCase('--foo-bar');
|
||||
* // => 'Foo Bar'
|
||||
*
|
||||
* _.startCase('fooBar');
|
||||
* // => 'Foo Bar'
|
||||
*
|
||||
* _.startCase('__foo_bar__');
|
||||
* // => 'Foo Bar'
|
||||
*/
|
||||
var startCase = createCompounder(function(result, word, index) {
|
||||
return result + (index ? ' ' : '') + (word.charAt(0).toUpperCase() + word.slice(1));
|
||||
});
|
||||
|
||||
return startCase;
|
||||
});
|
||||
@@ -30,7 +30,7 @@ define(['../internal/baseToString', '../internal/charsLeftIndex', '../internal/c
|
||||
if (guard ? isIterateeCall(value, chars, guard) : chars == null) {
|
||||
return string.slice(trimmedLeftIndex(string), trimmedRightIndex(string) + 1);
|
||||
}
|
||||
chars = baseToString(chars);
|
||||
chars = (chars + '');
|
||||
return string.slice(charsLeftIndex(string, chars), charsRightIndex(string, chars) + 1);
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ define(['../internal/baseToString', '../internal/charsLeftIndex', '../internal/i
|
||||
if (guard ? isIterateeCall(value, chars, guard) : chars == null) {
|
||||
return string.slice(trimmedLeftIndex(string))
|
||||
}
|
||||
return string.slice(charsLeftIndex(string, baseToString(chars)));
|
||||
return string.slice(charsLeftIndex(string, (chars + '')));
|
||||
}
|
||||
|
||||
return trimLeft;
|
||||
|
||||
@@ -27,7 +27,7 @@ define(['../internal/baseToString', '../internal/charsRightIndex', '../internal/
|
||||
if (guard ? isIterateeCall(value, chars, guard) : chars == null) {
|
||||
return string.slice(0, trimmedRightIndex(string) + 1)
|
||||
}
|
||||
return string.slice(0, charsRightIndex(string, baseToString(chars)) + 1);
|
||||
return string.slice(0, charsRightIndex(string, (chars + '')) + 1);
|
||||
}
|
||||
|
||||
return trimRight;
|
||||
|
||||
Reference in New Issue
Block a user