Files
react/node_modules/motion-dom/dist/es/animation/waapi/easing/cubic-bezier.mjs
2025-12-28 20:50:08 +00:00

4 lines
119 B
JavaScript

const cubicBezierAsString = ([a, b, c, d]) => `cubic-bezier(${a}, ${b}, ${c}, ${d})`;
export { cubicBezierAsString };