({ width, height })
| 53 | * @param {int} height |
| 54 | */ |
| 55 | export const changeRootSize = ({ width, height }) => { |
| 56 | if (width) { |
| 57 | root.style.width = `${width}px`; |
| 58 | } |
| 59 | |
| 60 | if (height) { |
| 61 | root.style.height = `${height}px`; |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | /** |
| 66 | * @param {string} id |
no outgoing calls
no test coverage detected