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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/text.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mingyang_text",
3
- "version": "2023.02.08",
3
+ "version": "2023.02.24",
4
4
  "description": "MingYang Packet",
5
5
  "main": "text.js",
6
6
  "scripts": {
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) {