mol_plot_all 1.2.439 → 1.2.441
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/node.test.js +21 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +21 -0
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -8719,6 +8719,27 @@ var $;
|
|
|
8719
8719
|
;
|
|
8720
8720
|
"use strict";
|
|
8721
8721
|
var $;
|
|
8722
|
+
(function ($_1) {
|
|
8723
|
+
$mol_test_mocks.push($ => {
|
|
8724
|
+
class $mol_locale_mock extends $mol_locale {
|
|
8725
|
+
lang(next = 'en') { return next; }
|
|
8726
|
+
static source(lang) {
|
|
8727
|
+
return {};
|
|
8728
|
+
}
|
|
8729
|
+
}
|
|
8730
|
+
__decorate([
|
|
8731
|
+
$mol_mem
|
|
8732
|
+
], $mol_locale_mock.prototype, "lang", null);
|
|
8733
|
+
__decorate([
|
|
8734
|
+
$mol_mem_key
|
|
8735
|
+
], $mol_locale_mock, "source", null);
|
|
8736
|
+
$.$mol_locale = $mol_locale_mock;
|
|
8737
|
+
});
|
|
8738
|
+
})($ || ($ = {}));
|
|
8739
|
+
//mol/locale/locale.test.ts
|
|
8740
|
+
;
|
|
8741
|
+
"use strict";
|
|
8742
|
+
var $;
|
|
8722
8743
|
(function ($) {
|
|
8723
8744
|
class $mol_locale extends $mol_object {
|
|
8724
8745
|
static lang_default() {
|