mol_plot_all 1.2.1313 → 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/web.mjs 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
  }