SpeciesFileGroup/taxonworks

View on GitHub
app/javascript/vue/tasks/data_attributes/field_synchronize/factory/makePreviewObject.js

Summary

Maintainability
A
0 mins
Test Coverage
export function makePreviewObject(newVal, oldVal) {
  return {
    value: newVal,
    hasChanged: newVal !== oldVal
  }
}