mingyang_text 2022.8.8 → 2022.8.26

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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mingyang_text",
3
- "version": "2022.08.08",
3
+ "version": "2022.08.26",
4
4
  "description": "MingYang Packet",
5
5
  "main": "text.js",
6
6
  "scripts": {
package/text.js CHANGED
@@ -109,7 +109,8 @@ function func_Filter(args_Text, args_Bin, args_End) {
109
109
  }
110
110
  }
111
111
 
112
- t_Line = args_Text.substr(t_iBin + args_Bin.length, t_iEnd - t_iBin - args_Bin.length);
112
+ //t_Line = args_Text.substr(t_iBin + args_Bin.length, t_iEnd - t_iBin - args_Bin.length);
113
+ t_Line = args_Text.substring(t_iBin + args_Bin.length, t_iEnd);
113
114
  t_Result.push(t_Line);
114
115
 
115
116
  t_Start = t_iEnd + args_End.length;