mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 11:57:49 +00:00
Remove wrapperToString.
This commit is contained in:
21
lodash.js
21
lodash.js
@@ -6212,22 +6212,6 @@
|
|||||||
return this.thru(interceptor);
|
return this.thru(interceptor);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Produces the result of coercing the unwrapped value to a string.
|
|
||||||
*
|
|
||||||
* @name toString
|
|
||||||
* @memberOf _
|
|
||||||
* @category Chain
|
|
||||||
* @returns {string} Returns the coerced string value.
|
|
||||||
* @example
|
|
||||||
*
|
|
||||||
* _([1, 2, 3]).toString();
|
|
||||||
* // => '1,2,3'
|
|
||||||
*/
|
|
||||||
function wrapperToString() {
|
|
||||||
return toString(this.value());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the chained sequence to extract the unwrapped value.
|
* Executes the chained sequence to extract the unwrapped value.
|
||||||
*
|
*
|
||||||
@@ -12248,7 +12232,6 @@
|
|||||||
lodash.toArray = toArray;
|
lodash.toArray = toArray;
|
||||||
lodash.toPath = toPath;
|
lodash.toPath = toPath;
|
||||||
lodash.toPlainObject = toPlainObject;
|
lodash.toPlainObject = toPlainObject;
|
||||||
lodash.toString = toString;
|
|
||||||
lodash.transform = transform;
|
lodash.transform = transform;
|
||||||
lodash.union = union;
|
lodash.union = union;
|
||||||
lodash.uniq = uniq;
|
lodash.uniq = uniq;
|
||||||
@@ -12380,6 +12363,7 @@
|
|||||||
lodash.sumBy = sumBy;
|
lodash.sumBy = sumBy;
|
||||||
lodash.template = template;
|
lodash.template = template;
|
||||||
lodash.toInteger = toInteger;
|
lodash.toInteger = toInteger;
|
||||||
|
lodash.toString = toString;
|
||||||
lodash.trim = trim;
|
lodash.trim = trim;
|
||||||
lodash.trimLeft = trimLeft;
|
lodash.trimLeft = trimLeft;
|
||||||
lodash.trimRight = trimRight;
|
lodash.trimRight = trimRight;
|
||||||
@@ -12391,7 +12375,7 @@
|
|||||||
mixin(lodash, (function() {
|
mixin(lodash, (function() {
|
||||||
var source = {};
|
var source = {};
|
||||||
baseForOwn(lodash, function(func, methodName) {
|
baseForOwn(lodash, function(func, methodName) {
|
||||||
if (!lodash.prototype[methodName]) {
|
if (!hasOwnProperty.call(lodash.prototype, methodName)) {
|
||||||
source[methodName] = func;
|
source[methodName] = func;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -12602,7 +12586,6 @@
|
|||||||
lodash.prototype.next = wrapperNext;
|
lodash.prototype.next = wrapperNext;
|
||||||
lodash.prototype.plant = wrapperPlant;
|
lodash.prototype.plant = wrapperPlant;
|
||||||
lodash.prototype.reverse = wrapperReverse;
|
lodash.prototype.reverse = wrapperReverse;
|
||||||
lodash.prototype.toString = wrapperToString;
|
|
||||||
lodash.prototype.run = lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
lodash.prototype.run = lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;
|
||||||
|
|
||||||
if (iteratorSymbol) {
|
if (iteratorSymbol) {
|
||||||
|
|||||||
Reference in New Issue
Block a user