How do I compare FormData object, I am trying to check if the form has been changed or not before sending the ajax request.
But it seems objects cannot be compared. Is there any way to convert it to js Object or an elegant way?
let a = new FormData()
let b = new FormData()
console.log(a === b ) // returns false