* Generates a random 8-characters string.
()
| 737 | * Generates a random 8-characters string. |
| 738 | */ |
| 739 | function randomString() { |
| 740 | return Date.now().toString(36).substring(3) + Math.random().toString(36).substring(2, 5); |
| 741 | } |
| 742 | |
| 743 | // imported from https://github.com/galkn/querystring |
| 744 | /** |
no outgoing calls
no test coverage detected