@skyux/ag-grid 13.0.0-beta.1 → 13.0.1

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.
@@ -1343,6 +1343,11 @@ class SkyAgGridCellEditorUtils {
1343
1343
  return SkyAgGridCellEditorInitialAction.Untouched;
1344
1344
  }
1345
1345
  }
1346
+ /**
1347
+ * Returns the difference between the minuend and subtrahend. If the minuend is not defined, returns 0.
1348
+ * @param minuend The number from which another number is subtracted.
1349
+ * @param subtrahend The number that is subtracted from the minuend.
1350
+ */
1346
1351
  static subtractOrZero(minuend, subtrahend) {
1347
1352
  // Swapping minuend with subtrahend when minuend is null or undefined results in
1348
1353
  // the subtrahend being subtracted from itself, which will always be 0.