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/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -3142,6 +3142,27 @@ var $;
|
|
|
3142
3142
|
;
|
|
3143
3143
|
"use strict";
|
|
3144
3144
|
var $;
|
|
3145
|
+
(function ($_1) {
|
|
3146
|
+
$mol_test_mocks.push($ => {
|
|
3147
|
+
class $mol_locale_mock extends $mol_locale {
|
|
3148
|
+
lang(next = 'en') { return next; }
|
|
3149
|
+
static source(lang) {
|
|
3150
|
+
return {};
|
|
3151
|
+
}
|
|
3152
|
+
}
|
|
3153
|
+
__decorate([
|
|
3154
|
+
$mol_mem
|
|
3155
|
+
], $mol_locale_mock.prototype, "lang", null);
|
|
3156
|
+
__decorate([
|
|
3157
|
+
$mol_mem_key
|
|
3158
|
+
], $mol_locale_mock, "source", null);
|
|
3159
|
+
$.$mol_locale = $mol_locale_mock;
|
|
3160
|
+
});
|
|
3161
|
+
})($ || ($ = {}));
|
|
3162
|
+
//mol/locale/locale.test.ts
|
|
3163
|
+
;
|
|
3164
|
+
"use strict";
|
|
3165
|
+
var $;
|
|
3145
3166
|
(function ($) {
|
|
3146
3167
|
class $mol_locale extends $mol_object {
|
|
3147
3168
|
static lang_default() {
|