Files
SerpentRace/node_modules/motion-dom/dist/es/resize/index.mjs
T
2025-08-23 00:05:18 +02:00

9 lines
229 B
JavaScript

import { resizeElement } from './handle-element.mjs';
import { resizeWindow } from './handle-window.mjs';
function resize(a, b) {
return typeof a === "function" ? resizeWindow(a) : resizeElement(a, b);
}
export { resize };