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

17 lines
340 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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 };