(selector)
| 67 | * @param {string} selector |
| 68 | */ |
| 69 | export const getById = (selector) => document.getElementById(selector); |
| 70 | |
| 71 | export const deepEqual = (x, y) => { |
| 72 | const ok = Object.keys, tx = typeof x, ty = typeof y; |
no outgoing calls
no test coverage detected
searching dependent graphs…