@razorpay/blade
Version:
The Design System that powers Razorpay
27 lines (24 loc) • 965 B
JavaScript
import '../../d3-color/src/index.js';
import rgb from './rgb.js';
import { genericArray } from './array.js';
import date from './date.js';
import interpolateNumber from './number.js';
import object from './object.js';
import string from './string.js';
import constant from './constant.js';
import numberArray, { isNumberArray } from './numberArray.js';
import color from '../../d3-color/src/color.js';
function interpolate(a, b) {
var t = typeof b, c;
return b == null || t === "boolean" ? constant(b)
: (t === "number" ? interpolateNumber
: t === "string" ? ((c = color(b)) ? (b = c, rgb) : string)
: b instanceof color ? rgb
: b instanceof Date ? date
: isNumberArray(b) ? numberArray
: Array.isArray(b) ? genericArray
: typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object
: interpolateNumber)(a, b);
}
export { interpolate as default };
//# sourceMappingURL=value.js.map