isite 2023.12.19 → 2023.12.20
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/lib/fsm.js +4 -0
- package/package.json +3 -3
package/lib/fsm.js
CHANGED
|
@@ -171,6 +171,9 @@ module.exports = function init(____0) {
|
|
|
171
171
|
};
|
|
172
172
|
|
|
173
173
|
fsm.off = function (path) {
|
|
174
|
+
if (!path) {
|
|
175
|
+
return false;
|
|
176
|
+
}
|
|
174
177
|
if (path && Array.isArray(path)) {
|
|
175
178
|
path.forEach((p) => {
|
|
176
179
|
fsm.off(p);
|
|
@@ -188,6 +191,7 @@ module.exports = function init(____0) {
|
|
|
188
191
|
}
|
|
189
192
|
}
|
|
190
193
|
}
|
|
194
|
+
return true;
|
|
191
195
|
};
|
|
192
196
|
|
|
193
197
|
fsm.readFileStream = function (path) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isite",
|
|
3
|
-
"version": "2023.12.
|
|
4
|
-
"description": "Create
|
|
3
|
+
"version": "2023.12.20",
|
|
4
|
+
"description": "Create High Level Multi-Language Web Site [Fast and Easy] ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -51,4 +51,4 @@
|
|
|
51
51
|
"ws": "^8.9.0",
|
|
52
52
|
"xlsx": "^0.17.5"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|