18 lines
338 B
JavaScript
18 lines
338 B
JavaScript
const separator = /[\s,]+/;
|
|
/**
|
|
* Apply "flip" string to icon customisations
|
|
*/
|
|
function flipFromString(custom, flip) {
|
|
flip.split(separator).forEach((str) => {
|
|
switch (str.trim()) {
|
|
case "horizontal":
|
|
custom.hFlip = true;
|
|
break;
|
|
case "vertical":
|
|
custom.vFlip = true;
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
export { flipFromString }; |