astro-ghostcms/.pnpm-store/v3/files/b4/fafa05995997ffbf25c630d71bc...

17 lines
340 B
Plaintext

const separator = /[\s,]+/;
function flipFromString(custom, flip) {
flip.split(separator).forEach((str) => {
const value = str.trim();
switch (value) {
case "horizontal":
custom.hFlip = true;
break;
case "vertical":
custom.vFlip = true;
break;
}
});
}
export { flipFromString };