MCPcopy Create free account
hub / github.com/Threadfin/Threadfin / checkUndo

Function checkUndo

ts/base_ts.ts:771–788  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

769}
770
771function checkUndo(key: string) {
772
773 switch (key) {
774 case "epgMapping":
775 if (UNDO.hasOwnProperty(key)) {
776 SERVER["xepg"][key] = JSON.parse(JSON.stringify(UNDO[key]))
777 } else {
778 UNDO[key] = JSON.parse(JSON.stringify(SERVER["xepg"][key]));
779 }
780 break;
781
782 default:
783
784 break;
785 }
786
787 return
788}
789
790function sortSelect(elem) {
791

Callers 2

createTableContentMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected