mingyang_text 2023.2.8 → 2023.2.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/text.js +1 -1
package/package.json
CHANGED
package/text.js
CHANGED
@@ -428,7 +428,7 @@ module.exports.do_Base62Decode = func_Base62Decode;
|
|
428
428
|
* @param {原始字符串} args_Text
|
429
429
|
* @param {分隔符数组} args_DelimiterArray
|
430
430
|
*/
|
431
|
-
function func_Split(args_Text, args_DelimiterArray = [",", "-", "/", "|", "~", "*", "+"]) {
|
431
|
+
function func_Split(args_Text, args_DelimiterArray = [",", "-", "_", "/", "|", "~", "*", "+"]) {
|
432
432
|
let temp_Result = [args_Text];
|
433
433
|
for (let u = 0; u < args_DelimiterArray.length; u++) {
|
434
434
|
if (args_Text.indexOf(args_DelimiterArray[u]) > -1) {
|