no message

This commit is contained in:
kuaifan 2022-01-13 00:29:42 +08:00
parent 87cdee4fe8
commit 9594cc674f

View File

@ -141,7 +141,7 @@
* @param end
* @returns {*}
*/
getMiddle(string, start, end) {
getMiddle(string, start = null, end = null) {
string = string.toString();
if (this.isHave(start) && this.strExists(string, start)) {
string = string.substring(string.indexOf(start) + start.length);