We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08473e6 commit 417c29cCopy full SHA for 417c29c
src/number.ts
@@ -215,9 +215,6 @@ export function convertPayRate(
215
* margin(null, 100); // undefined
216
* margin(100, null); // undefined
217
* ```
218
- *
219
- * @param base Cost (or Base Value) – the original or maximum reference value (e.g. cost price, max rate).
220
- * @param actual Current or Actual Value – the value you compare against the base (e.g. selling price, current rate).
221
*/
222
export function margin(base: Maybe<number>, actual: Maybe<number>) {
223
if (actual == null || base == null) return undefined;
0 commit comments