xfuture 1.1.7 → 1.1.9
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/index.js +3 -0
- package/package/mac/xFuture.node +0 -0
- package/package/windows/xFuture.node +0 -0
- package/package.json +1 -1
- package/parser.js +4 -4
package/index.js
CHANGED
package/package/mac/xFuture.node
CHANGED
Binary file
|
Binary file
|
package/package.json
CHANGED
package/parser.js
CHANGED
@@ -70,7 +70,7 @@ class xParser {
|
|
70
70
|
base.routing = routing;
|
71
71
|
base.remark = remark;
|
72
72
|
base.address = address;
|
73
|
-
base.port = port;
|
73
|
+
base.port = port * 1;
|
74
74
|
return base;
|
75
75
|
}
|
76
76
|
|
@@ -122,7 +122,7 @@ class xParser {
|
|
122
122
|
base.routing = routing;
|
123
123
|
base.remark = remark;
|
124
124
|
base.address = address;
|
125
|
-
base.port = port;
|
125
|
+
base.port = port * 1;
|
126
126
|
return base;
|
127
127
|
}
|
128
128
|
|
@@ -166,7 +166,7 @@ class xParser {
|
|
166
166
|
base.routing = routing;
|
167
167
|
base.remark = remark;
|
168
168
|
base.address = address;
|
169
|
-
base.port = port;
|
169
|
+
base.port = port * 1;
|
170
170
|
return base;
|
171
171
|
|
172
172
|
|
@@ -196,7 +196,7 @@ class xParser {
|
|
196
196
|
base.routing = routing;
|
197
197
|
base.remark = remark;
|
198
198
|
base.address = address;
|
199
|
-
base.port = port;
|
199
|
+
base.port = port * 1;
|
200
200
|
return base;
|
201
201
|
}
|
202
202
|
|