(code)
| 18 | |
| 19 | |
| 20 | push(code) { |
| 21 | if (isGist()) return this.pushToGist(code); |
| 22 | return this.pushToRepo(code); |
| 23 | } |
| 24 | |
| 25 | pushToRepo(code) { |
| 26 | const changed = $('.diff-file:checked').toArray().map(elem => elem.value); |
nothing calls this directly
no test coverage detected