uploadcare-widget-tab-effects
Version:
Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.
13 lines (9 loc) • 326 B
JavaScript
const rotateValues = [0, 270, 180, 90]
const getNextRotateValue = (currentValue) => {
const currentIndex = rotateValues.indexOf(currentValue)
if (!~currentIndex || (currentIndex === (rotateValues.length - 1))) {
return rotateValues[0]
}
return rotateValues[currentIndex + 1]
}
export default getNextRotateValue