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/node.js
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
|
}
|