mol_view_tree2_lib 1.0.208 → 1.0.210
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.deps.json +1 -1
- package/node.js +6 -0
- package/node.js.map +1 -1
- package/node.mjs +6 -0
- package/node.test.js +9 -3
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -0
- package/web.js.map +1 -1
- package/web.mjs +6 -0
- package/web.test.js +3 -3
- package/web.test.js.map +1 -1
package/web.mjs
CHANGED
|
@@ -2738,6 +2738,12 @@ var $;
|
|
|
2738
2738
|
// [ Symbol.toPrimitive ]() {
|
|
2739
2739
|
// return this.toString()
|
|
2740
2740
|
// }
|
|
2741
|
+
match(...args) {
|
|
2742
|
+
return this.toString().match(...args);
|
|
2743
|
+
}
|
|
2744
|
+
split(...args) {
|
|
2745
|
+
return this.toString().split(...args);
|
|
2746
|
+
}
|
|
2741
2747
|
toString() {
|
|
2742
2748
|
return this.join('\n');
|
|
2743
2749
|
}
|
package/web.test.js
CHANGED
|
@@ -4176,10 +4176,10 @@ var $;
|
|
|
4176
4176
|
static wrap(task) {
|
|
4177
4177
|
const store = new WeakMap();
|
|
4178
4178
|
const fun = function (next) {
|
|
4179
|
-
if (next === undefined && store.has(this))
|
|
4180
|
-
return store.get(this);
|
|
4179
|
+
if (next === undefined && store.has(this ?? fun))
|
|
4180
|
+
return store.get(this ?? fun);
|
|
4181
4181
|
const val = task.call(this, next) ?? next;
|
|
4182
|
-
store.set(this, val);
|
|
4182
|
+
store.set(this ?? fun, val);
|
|
4183
4183
|
return val;
|
|
4184
4184
|
};
|
|
4185
4185
|
Reflect.defineProperty(fun, 'name', { value: task.name + ' ' });
|