* Credit: Matheus Sampaio https://github.com/matheussampaio
(url, text)
| 325 | * Credit: Matheus Sampaio https://github.com/matheussampaio |
| 326 | */ |
| 327 | function hyperlink(url, text) { |
| 328 | const OSC = '\u001B]'; |
| 329 | const BEL = '\u0007'; |
| 330 | const SEP = ';'; |
| 331 | |
| 332 | return [OSC, '8', SEP, SEP, url || text, BEL, text, OSC, '8', SEP, SEP, BEL].join(''); |
| 333 | } |
| 334 | |
| 335 | module.exports = { |
| 336 | strlen: strlen, |
no outgoing calls
no test coverage detected
searching dependent graphs…