(input, seed = 0)
| 129 | |
| 130 | // hash clipboard content |
| 131 | const hashCB = async (input, seed = 0) => { |
| 132 | return String(xxHash32(input, seed)); |
| 133 | }; |
| 134 | |
| 135 | //check if clipboard content changed |
| 136 | const newCB = async hcb => { |
no outgoing calls
no test coverage detected