Run the cell block of Javascript code Alias of `%%javascript`
(self, line, cell)
| 33 | |
| 34 | @cell_magic |
| 35 | def js(self, line, cell): |
| 36 | """Run the cell block of Javascript code |
| 37 | |
| 38 | Alias of `%%javascript` |
| 39 | """ |
| 40 | self.javascript(line, cell) |
| 41 | |
| 42 | @cell_magic |
| 43 | def javascript(self, line, cell): |
nothing calls this directly
no test coverage detected