+17
@@ -0,0 +1,17 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user