1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00
semantic/prototype/UI/patch.js

14 lines
326 B
JavaScript
Raw Normal View History

2015-10-27 18:09:16 +03:00
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;
}