fui-fancyui
Version:
FancyUI Libary
10 lines (9 loc) • 360 B
JavaScript
function a(e) {
if (!/^(\d+)(?:\s*\/\s*)(\d+)$/.test(e))
return console.warn("Invalid aspect ratio provided. Please use the format 'width/height'."), !1;
const [t, s] = e.split("/");
return t === "0" || s === "0" ? (console.warn("Invalid aspect ratio provided. Please use the format value should be not '0'."), !1) : !0;
}
export {
a as default
};