(num)
| 1 | str2bin(txt, spaceSeparatedOctets) { |
| 2 | function zeroPad(num) { |
| 3 | return "00000000".slice(String(num).length) + num |
| 4 | } |
| 5 | return txt.replace(/[\s\S]/g, function(str) { |
| 6 | str = zeroPad(str.charCodeAt().toString(2)); |
| 7 | return !1 == spaceSeparatedOctets ? str : str + " " |
no outgoing calls
no test coverage detected