mol_plot_all 1.2.1314 → 1.2.1315
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.d.ts +6 -0
- package/node.d.ts.map +1 -1
- 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 +6 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +6 -0
- package/web.d.ts.map +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/node.mjs
CHANGED
|
@@ -3496,12 +3496,18 @@ var $;
|
|
|
3496
3496
|
added1(diff) {
|
|
3497
3497
|
return this.merged(diff, (a, b) => a + b);
|
|
3498
3498
|
}
|
|
3499
|
+
substracted1(diff) {
|
|
3500
|
+
return this.merged(diff, (a, b) => a - b);
|
|
3501
|
+
}
|
|
3499
3502
|
multed0(mult) {
|
|
3500
3503
|
return this.map(value => value * mult);
|
|
3501
3504
|
}
|
|
3502
3505
|
multed1(mults) {
|
|
3503
3506
|
return this.merged(mults, (a, b) => a * b);
|
|
3504
3507
|
}
|
|
3508
|
+
divided1(mults) {
|
|
3509
|
+
return this.merged(mults, (a, b) => a / b);
|
|
3510
|
+
}
|
|
3505
3511
|
powered0(mult) {
|
|
3506
3512
|
return this.map(value => value ** mult);
|
|
3507
3513
|
}
|
package/node.test.js
CHANGED
|
@@ -3487,12 +3487,18 @@ var $;
|
|
|
3487
3487
|
added1(diff) {
|
|
3488
3488
|
return this.merged(diff, (a, b) => a + b);
|
|
3489
3489
|
}
|
|
3490
|
+
substracted1(diff) {
|
|
3491
|
+
return this.merged(diff, (a, b) => a - b);
|
|
3492
|
+
}
|
|
3490
3493
|
multed0(mult) {
|
|
3491
3494
|
return this.map(value => value * mult);
|
|
3492
3495
|
}
|
|
3493
3496
|
multed1(mults) {
|
|
3494
3497
|
return this.merged(mults, (a, b) => a * b);
|
|
3495
3498
|
}
|
|
3499
|
+
divided1(mults) {
|
|
3500
|
+
return this.merged(mults, (a, b) => a / b);
|
|
3501
|
+
}
|
|
3496
3502
|
powered0(mult) {
|
|
3497
3503
|
return this.map(value => value ** mult);
|
|
3498
3504
|
}
|