mol_plot_all 1.2.1314 → 1.2.1316
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/web.js
CHANGED
|
@@ -2805,12 +2805,18 @@ var $;
|
|
|
2805
2805
|
added1(diff) {
|
|
2806
2806
|
return this.merged(diff, (a, b) => a + b);
|
|
2807
2807
|
}
|
|
2808
|
+
substracted1(diff) {
|
|
2809
|
+
return this.merged(diff, (a, b) => a - b);
|
|
2810
|
+
}
|
|
2808
2811
|
multed0(mult) {
|
|
2809
2812
|
return this.map(value => value * mult);
|
|
2810
2813
|
}
|
|
2811
2814
|
multed1(mults) {
|
|
2812
2815
|
return this.merged(mults, (a, b) => a * b);
|
|
2813
2816
|
}
|
|
2817
|
+
divided1(mults) {
|
|
2818
|
+
return this.merged(mults, (a, b) => a / b);
|
|
2819
|
+
}
|
|
2814
2820
|
powered0(mult) {
|
|
2815
2821
|
return this.map(value => value ** mult);
|
|
2816
2822
|
}
|