1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/prototype/UI/patch.js
2015-10-27 11:09:16 -04:00

14 lines
326 B
JavaScript

function Patch(patch) {
if (patch.delete != null) {
this.before = termFromJSON(patch.delete);
}
if (patch.insert != null) {
this.after = termFromJSON(patch.insert);
}
if (patch.replace != null) {
this.before = termFromJSON(patch.replace.before);
this.after = termFromJSON(patch.replace.after);
}
return this;
}