(key: string)
| 769 | } |
| 770 | |
| 771 | function 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 | |
| 790 | function sortSelect(elem) { |
| 791 |
no outgoing calls
no test coverage detected