UNPKG

advanced-cropper

Version:

The core of the advanced cropper libraries family

23 lines (21 loc) 620 B
function hasInteractions(interactions) { return (interactions.moveCoordinates || interactions.resizeCoordinates || interactions.transformImage.move || interactions.transformImage.rotate || interactions.transformImage.flip || interactions.transformImage.scale); } function getEmptyInteractions() { return { moveCoordinates: false, resizeCoordinates: false, transformImage: { rotate: false, move: false, scale: false, flip: false, }, }; } export { getEmptyInteractions, hasInteractions };