fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
14 lines (13 loc) • 330 B
JavaScript
//#region src/util/internals/ifNaN.ts
/**
*
* @param value value to check if NaN
* @param [valueIfNaN]
* @returns `fallback` is `value is NaN
*/
const ifNaN = (value, valueIfNaN) => {
return isNaN(value) && typeof valueIfNaN === "number" ? valueIfNaN : value;
};
//#endregion
export { ifNaN };
//# sourceMappingURL=ifNaN.mjs.map