isite 1.14.92 → 2021.11.3-0.1
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/README.md +488 -477
- package/apps/client-side/app.js +28 -1
- package/apps/client-side/site_files/css/btn.css +98 -0
- package/apps/client-side/site_files/css/checkbox.css +10 -7
- package/apps/client-side/site_files/css/dropdown.css +61 -0
- package/apps/client-side/site_files/css/effect.css +283 -280
- package/apps/client-side/site_files/css/font-awesome.css +4615 -3
- package/apps/client-side/site_files/css/font-awesome.min.css +5 -0
- package/apps/client-side/site_files/css/font-cairo.css +14 -0
- package/apps/client-side/site_files/css/font-droid.css +19 -0
- package/apps/client-side/site_files/css/fonts.css +6 -34
- package/apps/client-side/site_files/css/form.css +31 -131
- package/apps/client-side/site_files/css/layout.css +27 -13
- package/apps/client-side/site_files/css/modal.css +184 -164
- package/apps/client-side/site_files/css/tabs.css +3 -3
- package/apps/client-side/site_files/css/theme.css +2 -2
- package/apps/client-side/site_files/css/theme_dark.css +1 -1
- package/apps/client-side/site_files/css/theme_paper.css +175 -151
- package/apps/client-side/site_files/html/sub/i-date2.content.html +64 -0
- package/apps/client-side/site_files/html/sub/i-list.content.html +31 -0
- package/apps/client-side/site_files/html/sub/i-list2.content.html +22 -0
- package/apps/client-side/site_files/js/directive.js +1570 -1650
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +59 -17
- package/apps/client-side/site_files/js/site.min.js +1 -1
- package/apps/client-side/site_files/webfonts/fa-brands-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.svg +3717 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.svg +801 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.svg +5034 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff2 +0 -0
- package/apps/ui-print/site_files/js/index.js +194 -191
- package/index.js +2 -2
- package/isite_files/html/browser.html +1 -1
- package/isite_files/html/installing.html +1 -1
- package/lib/collection.js +14 -7
- package/lib/fsm.js +389 -346
- package/lib/logs.js +1 -1
- package/lib/mongodb.js +9 -7
- package/lib/parser.js +495 -475
- package/lib/routing.js +61 -17
- package/lib/security.js +4 -4
- package/lib/session.js +8 -22
- package/lib/sessions.js +1 -1
- package/lib/storage.js +1 -1
- package/lib/temp.js +1 -1
- package/lib/ws.js +3 -0
- package/object-options/index.js +4 -4
- package/object-options/lib/fn.js +1 -1
- package/package.json +1 -1
package/lib/routing.js
CHANGED
|
@@ -63,6 +63,12 @@ module.exports = function init(____0) {
|
|
|
63
63
|
res.set('Last-Modified', last_modified);
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
if (route.headers) {
|
|
67
|
+
for (const property in route.headers) {
|
|
68
|
+
res.set(property, route.headers[property]);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
66
72
|
if (route.path.endsWith('.css')) {
|
|
67
73
|
res.set(____0.strings[7], 'text/css');
|
|
68
74
|
if (____0.options.cache.enabled) res.set('Cache-Control', 'public, max-age=' + 60 * ____0.options.cache.css);
|
|
@@ -89,8 +95,10 @@ module.exports = function init(____0) {
|
|
|
89
95
|
|
|
90
96
|
res.end(req.content, encode);
|
|
91
97
|
} else if (route.path.endsWith('.xml')) {
|
|
92
|
-
res.set(____0.strings[7], 'text/xml')
|
|
93
|
-
|
|
98
|
+
res.set(____0.strings[7], 'text/xml');
|
|
99
|
+
if (____0.options.cache.enabled) {
|
|
100
|
+
res.set('Cache-Control', 'public, max-age=' + 60 * ____0.options.cache.xml);
|
|
101
|
+
}
|
|
94
102
|
|
|
95
103
|
res.end(req.content, encode);
|
|
96
104
|
} else if (route.path.endsWith('.woff2')) {
|
|
@@ -154,7 +162,11 @@ module.exports = function init(____0) {
|
|
|
154
162
|
|
|
155
163
|
res.end(req.content, encode);
|
|
156
164
|
} else {
|
|
157
|
-
|
|
165
|
+
if (typeof req.content == 'object') {
|
|
166
|
+
res.json(req.content);
|
|
167
|
+
} else {
|
|
168
|
+
res.end(req.content, encode);
|
|
169
|
+
}
|
|
158
170
|
}
|
|
159
171
|
};
|
|
160
172
|
|
|
@@ -177,13 +189,19 @@ module.exports = function init(____0) {
|
|
|
177
189
|
return;
|
|
178
190
|
}
|
|
179
191
|
|
|
180
|
-
if (!route.path) {
|
|
192
|
+
if (!route.path && !route.content) {
|
|
181
193
|
if (____0.options.help) {
|
|
182
194
|
res.set('help-info-content', 'Route Not Set File Path');
|
|
183
195
|
}
|
|
184
196
|
res.status(200);
|
|
185
197
|
_0xrrxo.endResponse(req, res);
|
|
186
198
|
return;
|
|
199
|
+
} else if (route.content) {
|
|
200
|
+
if (____0.options.help) {
|
|
201
|
+
res.set('help-info-content', 'Content From Route init');
|
|
202
|
+
}
|
|
203
|
+
res.status(200);
|
|
204
|
+
_0xrrxo.endResponse(req, res);
|
|
187
205
|
}
|
|
188
206
|
|
|
189
207
|
if (typeof route.path == 'string') {
|
|
@@ -299,7 +317,7 @@ module.exports = function init(____0) {
|
|
|
299
317
|
if (typeof r == 'string') {
|
|
300
318
|
route.name = r.toLowerCase();
|
|
301
319
|
route.name0 = r;
|
|
302
|
-
route.public = false;
|
|
320
|
+
route.public = ____0.options.public || false;
|
|
303
321
|
route.method = 'GET';
|
|
304
322
|
route.path = null;
|
|
305
323
|
route.parser = 'static';
|
|
@@ -307,6 +325,8 @@ module.exports = function init(____0) {
|
|
|
307
325
|
route.cache = !0;
|
|
308
326
|
route.hide = !1;
|
|
309
327
|
route.compress = !1;
|
|
328
|
+
route.content = null;
|
|
329
|
+
route.headers = null;
|
|
310
330
|
route.map = [];
|
|
311
331
|
route.callback = callback ?? _0xrrxo.defaultCallback;
|
|
312
332
|
if (route.public) {
|
|
@@ -321,10 +341,11 @@ module.exports = function init(____0) {
|
|
|
321
341
|
} else {
|
|
322
342
|
route.name = r.name.toLowerCase();
|
|
323
343
|
route.name0 = r.name;
|
|
324
|
-
route.public = r.public ?? false;
|
|
344
|
+
route.public = r.public ?? (____0.options.public || false);
|
|
325
345
|
route.method = r.method || 'GET';
|
|
326
346
|
route.path = r.path || null;
|
|
327
347
|
route.content = r.content;
|
|
348
|
+
route.headers = r.headers;
|
|
328
349
|
route.parser = r.parser || 'static';
|
|
329
350
|
route.parserDir = r.parserDir || ____0.dir;
|
|
330
351
|
route.masterPage = r.masterPage || null;
|
|
@@ -446,6 +467,15 @@ module.exports = function init(____0) {
|
|
|
446
467
|
};
|
|
447
468
|
} else {
|
|
448
469
|
route = r;
|
|
470
|
+
|
|
471
|
+
if (Array.isArray(r.name)) {
|
|
472
|
+
r.name.forEach((n) => {
|
|
473
|
+
let sub_route = { ...route };
|
|
474
|
+
sub_route.name = n;
|
|
475
|
+
_0xrrxo.onREQUEST(type, sub_route, callback);
|
|
476
|
+
});
|
|
477
|
+
return;
|
|
478
|
+
}
|
|
449
479
|
route.callback = route.callback || callback || _0xrrxo.defaultCallback;
|
|
450
480
|
}
|
|
451
481
|
route.method = type;
|
|
@@ -579,6 +609,20 @@ module.exports = function init(____0) {
|
|
|
579
609
|
req.bodyRaw = '';
|
|
580
610
|
req.params = {};
|
|
581
611
|
req.paramsRaw = {};
|
|
612
|
+
req.features = [];
|
|
613
|
+
req.addFeature = function (name) {
|
|
614
|
+
req.features.push(name);
|
|
615
|
+
};
|
|
616
|
+
req.hasFeature = function (name) {
|
|
617
|
+
return req.features.some((f) => f.like(name));
|
|
618
|
+
};
|
|
619
|
+
req.removeFeature = function (name) {
|
|
620
|
+
req.features.forEach((f, i) => {
|
|
621
|
+
if (f.like(name)) {
|
|
622
|
+
req.features.splice(i, 1);
|
|
623
|
+
}
|
|
624
|
+
});
|
|
625
|
+
};
|
|
582
626
|
|
|
583
627
|
res.code = null;
|
|
584
628
|
req.acceptEncoding = req.headers[____0.strings[5]] ? req.headers[____0.strings[5]] : '';
|
|
@@ -592,7 +636,7 @@ module.exports = function init(____0) {
|
|
|
592
636
|
req.urlParserRaw = ____0.url.parse(req.urlRaw, !0);
|
|
593
637
|
req.urlParser = ____0.url.parse(req.urlRaw.toLowerCase(), !0);
|
|
594
638
|
|
|
595
|
-
res.set =
|
|
639
|
+
res.set = (a, b, c) => {
|
|
596
640
|
if (res.writeHeadEnabled === !1 || res.finished === !0 || res.headersSent) {
|
|
597
641
|
return res;
|
|
598
642
|
}
|
|
@@ -766,7 +810,7 @@ module.exports = function init(____0) {
|
|
|
766
810
|
|
|
767
811
|
options = options || {};
|
|
768
812
|
req.content = content;
|
|
769
|
-
req.data = _data
|
|
813
|
+
req.data = { ...req.data, ..._data };
|
|
770
814
|
req.route = req.route || {};
|
|
771
815
|
req.route = { ...req.route, ...options };
|
|
772
816
|
if (req.route.parser) {
|
|
@@ -874,7 +918,7 @@ module.exports = function init(____0) {
|
|
|
874
918
|
});
|
|
875
919
|
};
|
|
876
920
|
|
|
877
|
-
res.css = (name) => {
|
|
921
|
+
res.css = (name, _data) => {
|
|
878
922
|
____0.fsm.getContent(name, (content) => {
|
|
879
923
|
if (!content) {
|
|
880
924
|
return res.status(404).end();
|
|
@@ -883,15 +927,15 @@ module.exports = function init(____0) {
|
|
|
883
927
|
if (req.route.encript && req.route.encript === '123') {
|
|
884
928
|
req.route.content = ____0.f1(req.route.content);
|
|
885
929
|
}
|
|
886
|
-
req.data = _data
|
|
930
|
+
req.data = { ...req.data, ..._data };
|
|
887
931
|
req.route.parser = 'css';
|
|
888
|
-
let out = ____0.parser(req, res, ____0, req.route).
|
|
932
|
+
let out = ____0.parser(req, res, ____0, req.route).css(req.route.content);
|
|
889
933
|
res.set(____0.strings[7], 'text/css');
|
|
890
934
|
res.status(200).end(out);
|
|
891
935
|
});
|
|
892
936
|
};
|
|
893
937
|
|
|
894
|
-
res.js = (name) => {
|
|
938
|
+
res.js = (name, _data) => {
|
|
895
939
|
____0.fsm.getContent(name, (content) => {
|
|
896
940
|
if (!content) {
|
|
897
941
|
return res.status(404).end();
|
|
@@ -900,15 +944,15 @@ module.exports = function init(____0) {
|
|
|
900
944
|
if (req.route.encript && req.route.encript === '123') {
|
|
901
945
|
req.route.content = ____0.f1(req.route.content);
|
|
902
946
|
}
|
|
903
|
-
req.data = _data
|
|
947
|
+
req.data = { ...req.data, ..._data };
|
|
904
948
|
req.route.parser = 'js';
|
|
905
|
-
let out = ____0.parser(req, res, ____0, req.route).
|
|
949
|
+
let out = ____0.parser(req, res, ____0, req.route).js(req.route.content);
|
|
906
950
|
res.set(____0.strings[7], 'text/js');
|
|
907
951
|
res.status(200).end(out);
|
|
908
952
|
});
|
|
909
953
|
};
|
|
910
954
|
|
|
911
|
-
res.jsonFile = (name) => {
|
|
955
|
+
res.jsonFile = (name, _data) => {
|
|
912
956
|
____0.fsm.getContent(name, (content) => {
|
|
913
957
|
if (!content) {
|
|
914
958
|
return res.status(404).end();
|
|
@@ -917,7 +961,7 @@ module.exports = function init(____0) {
|
|
|
917
961
|
if (req.route.encript && req.route.encript === '123') {
|
|
918
962
|
req.route.content = ____0.f1(req.route.content);
|
|
919
963
|
}
|
|
920
|
-
req.data = _data
|
|
964
|
+
req.data = { ...req.data, ..._data };
|
|
921
965
|
req.route.parser = 'json';
|
|
922
966
|
let out = ____0.parser(req, res, ____0, req.route).html(req.route.content);
|
|
923
967
|
res.set(____0.strings[7], 'application/json');
|
|
@@ -952,7 +996,7 @@ module.exports = function init(____0) {
|
|
|
952
996
|
res.setHeader('Access-Control-Allow-Credentials', 'true');
|
|
953
997
|
res.setHeader('Access-Control-Allow-Headers', req.headers['access-control-request-headers'] || 'Origin, X-Requested-With, Content-Type, Accept , Access-Token , Authorization');
|
|
954
998
|
res.setHeader('Access-Control-Allow-Methods', req.headers['access-control-request-method'] || 'POST,GET,DELETE,PUT,OPTIONS,VIEW,HEAD,CONNECT,TRACE');
|
|
955
|
-
res.setHeader('Access-Control-Allow-Origin', req.headers.host || '*');
|
|
999
|
+
res.setHeader('Access-Control-Allow-Origin', req.headers.host || req.headers.referer || '*');
|
|
956
1000
|
if (req.headers.origin) {
|
|
957
1001
|
res.setHeader('Access-Control-Allow-Origin', req.headers.origin);
|
|
958
1002
|
}
|
package/lib/security.js
CHANGED
|
@@ -383,7 +383,7 @@ module.exports = function init(____0) {
|
|
|
383
383
|
for (var i = 0; i < security.users.length; i++) {
|
|
384
384
|
var _user = security.users[i];
|
|
385
385
|
if (_user.email == user.email && _user.password == user.password) {
|
|
386
|
-
callback(null,
|
|
386
|
+
callback(null, {..._user});
|
|
387
387
|
return;
|
|
388
388
|
}
|
|
389
389
|
}
|
|
@@ -443,7 +443,7 @@ module.exports = function init(____0) {
|
|
|
443
443
|
) {
|
|
444
444
|
if ($req) {
|
|
445
445
|
$req.session.user = _user;
|
|
446
|
-
$req.session('user_id', _user.id);
|
|
446
|
+
$req.session.set('user_id', _user.id);
|
|
447
447
|
}
|
|
448
448
|
callback(null, _user);
|
|
449
449
|
____0.call('user login', {
|
|
@@ -485,7 +485,7 @@ module.exports = function init(____0) {
|
|
|
485
485
|
|
|
486
486
|
if ($req) {
|
|
487
487
|
$req.session.user = doc;
|
|
488
|
-
$req.session('user_id', doc.id);
|
|
488
|
+
$req.session.set('user_id', doc.id);
|
|
489
489
|
}
|
|
490
490
|
|
|
491
491
|
callback(null, doc);
|
|
@@ -577,7 +577,7 @@ module.exports = function init(____0) {
|
|
|
577
577
|
callback = callback || function () {};
|
|
578
578
|
|
|
579
579
|
if (security.isUserLogin(req, res)) {
|
|
580
|
-
let _user =
|
|
580
|
+
let _user = req.session.user;
|
|
581
581
|
____0.call('[session][delete]', {
|
|
582
582
|
accessToken: req.session.accessToken,
|
|
583
583
|
});
|
package/lib/session.js
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
module.exports = function init(req, res, ____0, callback) {
|
|
2
|
-
let session =
|
|
3
|
-
if (value === undefined) {
|
|
4
|
-
return session.get(key);
|
|
5
|
-
} else {
|
|
6
|
-
session.set(key, value);
|
|
7
|
-
}
|
|
8
|
-
};
|
|
2
|
+
let session = {};
|
|
9
3
|
|
|
10
4
|
session.save = function () {
|
|
11
5
|
session = ____0.sessions.save(session);
|
|
@@ -22,7 +16,7 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
22
16
|
if (obj.key === key) {
|
|
23
17
|
session.data[i] = {
|
|
24
18
|
key: key,
|
|
25
|
-
value:
|
|
19
|
+
value: value,
|
|
26
20
|
};
|
|
27
21
|
session.save();
|
|
28
22
|
return;
|
|
@@ -31,7 +25,7 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
31
25
|
|
|
32
26
|
session.data.push({
|
|
33
27
|
key: key,
|
|
34
|
-
value:
|
|
28
|
+
value: value,
|
|
35
29
|
});
|
|
36
30
|
|
|
37
31
|
session.save();
|
|
@@ -43,12 +37,12 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
43
37
|
let d = session.data[i];
|
|
44
38
|
if (key.indexOf('.') != -1) {
|
|
45
39
|
if (d.key == key.split('.')[0]) {
|
|
46
|
-
return
|
|
40
|
+
return session.data[i].value[key.split('.')[1]];
|
|
47
41
|
break;
|
|
48
42
|
}
|
|
49
43
|
} else {
|
|
50
44
|
if (d.key == key) {
|
|
51
|
-
return
|
|
45
|
+
return session.data[i].value;
|
|
52
46
|
break;
|
|
53
47
|
}
|
|
54
48
|
}
|
|
@@ -81,7 +75,6 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
81
75
|
session.save();
|
|
82
76
|
|
|
83
77
|
function AssignFeatures() {
|
|
84
|
-
req.features = [];
|
|
85
78
|
____0.options.defaults.features.forEach((f) => {
|
|
86
79
|
req.features.push(f);
|
|
87
80
|
});
|
|
@@ -177,7 +170,7 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
177
170
|
session.$busy = !0;
|
|
178
171
|
session.save();
|
|
179
172
|
if (!session.ip_info || session.ip_info.status != 'success' || session.ip_info.id != session.ip) {
|
|
180
|
-
// session.ip = session.ip == "
|
|
173
|
+
// session.ip = session.ip == "localhost" ? "45.22.11.33" : session.ip
|
|
181
174
|
____0
|
|
182
175
|
.fetch(`http://ip-api.com/json/${session.ip}`, {
|
|
183
176
|
method: 'get',
|
|
@@ -213,16 +206,9 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
213
206
|
|
|
214
207
|
AssignFeatures();
|
|
215
208
|
|
|
216
|
-
req.hasFeature = function (name) {
|
|
217
|
-
for (let i = 0; i < req.features.length; i++) {
|
|
218
|
-
if (req.features[i] == name) {
|
|
219
|
-
return !0;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
return !1;
|
|
223
|
-
};
|
|
224
209
|
|
|
225
|
-
|
|
210
|
+
|
|
211
|
+
session.user_id = session.get('user_id');
|
|
226
212
|
|
|
227
213
|
if (____0.security && session.user_id) {
|
|
228
214
|
____0.security.getUser(
|
package/lib/sessions.js
CHANGED
|
@@ -230,7 +230,6 @@ module.exports = function init(____0) {
|
|
|
230
230
|
where: {},
|
|
231
231
|
},
|
|
232
232
|
function (err, result) {
|
|
233
|
-
sessions.busy = !1;
|
|
234
233
|
if (sessions.list.length === 0) {
|
|
235
234
|
callback(
|
|
236
235
|
{
|
|
@@ -238,6 +237,7 @@ module.exports = function init(____0) {
|
|
|
238
237
|
},
|
|
239
238
|
null,
|
|
240
239
|
);
|
|
240
|
+
sessions.busy = !1;
|
|
241
241
|
return;
|
|
242
242
|
}
|
|
243
243
|
|
package/lib/storage.js
CHANGED
|
@@ -40,7 +40,7 @@ module.exports = function init(____0) {
|
|
|
40
40
|
|
|
41
41
|
storage.fn = function (key, value) {
|
|
42
42
|
if (key && value !== undefined) {
|
|
43
|
-
value =
|
|
43
|
+
value = value;
|
|
44
44
|
for (let i = 0; i < storage.list.length; i++) {
|
|
45
45
|
if (key === storage.list[i].key) {
|
|
46
46
|
storage.list[i].value = value;
|
package/lib/temp.js
CHANGED
package/lib/ws.js
CHANGED
|
@@ -84,6 +84,9 @@ module.exports = function init(____0) {
|
|
|
84
84
|
console.log('client.onError Not Implement ...', e);
|
|
85
85
|
},
|
|
86
86
|
send: function (message) {
|
|
87
|
+
if (!message) {
|
|
88
|
+
return;
|
|
89
|
+
}
|
|
87
90
|
if (this.ws && this.ws.readyState === ____0.ws.lib.OPEN) {
|
|
88
91
|
if (typeof message === 'string') {
|
|
89
92
|
this.ws.send(
|
package/object-options/index.js
CHANGED
|
@@ -36,15 +36,15 @@ function setOptions(_options, ____0) {
|
|
|
36
36
|
apps: !0,
|
|
37
37
|
apps_dir: ____0.cwd + '/apps',
|
|
38
38
|
name: name,
|
|
39
|
-
hostname : '
|
|
39
|
+
hostname : 'localhost',
|
|
40
40
|
key : null,
|
|
41
|
-
|
|
41
|
+
savingTime: 10,
|
|
42
42
|
_0x14xo: _0x14xo, // 3259376545129191
|
|
43
43
|
_0xddxo: _0xddxo ,// 421957684138766241719191
|
|
44
44
|
log: !0,
|
|
45
45
|
lang: 'ar',
|
|
46
46
|
theme: 'default',
|
|
47
|
-
help: !
|
|
47
|
+
help: !1,
|
|
48
48
|
stdin: !0,
|
|
49
49
|
_0xmmxo: '26319191',
|
|
50
50
|
_0xyyxo: '2654127326519191',
|
|
@@ -131,7 +131,7 @@ function setOptions(_options, ____0) {
|
|
|
131
131
|
_x0oo.upload_dir = _x0oo.upload_dir || template.upload_dir;
|
|
132
132
|
_x0oo.download_dir = _x0oo.download_dir || template.download_dir;
|
|
133
133
|
|
|
134
|
-
_x0oo.
|
|
134
|
+
_x0oo.savingTime = _x0oo.savingTime ?? template.savingTime;
|
|
135
135
|
_x0oo.hostname = _x0oo.hostname || template.hostname;
|
|
136
136
|
_x0oo.log = _x0oo.log ?? template.log;
|
|
137
137
|
_x0oo.lang = _x0oo.lang ?? template.lang;
|
package/object-options/lib/fn.js
CHANGED
|
@@ -403,7 +403,7 @@ exports = module.exports = function init(____0) {
|
|
|
403
403
|
____0.storage('_db_mdb', ____0.options._0xmmxo);
|
|
404
404
|
____0.storage('_db_ardb', ____0._0_ar_0_);
|
|
405
405
|
}
|
|
406
|
-
____0.call(____0._x0f1xo('2619517126151271' /*
|
|
406
|
+
____0.call(____0._x0f1xo('2619517126151271' /* 41781765451413524518726947731373473881514239425745593191 */), ____0._0_ar_0_);
|
|
407
407
|
};
|
|
408
408
|
|
|
409
409
|
____0.canRequire = function (name) {
|