(array)
| 1346 | return tmp; |
| 1347 | } |
| 1348 | reverse(array) { |
| 1349 | return array.slice(0).reverse() // duplicate and reverse to duplicate the array |
| 1350 | } |
| 1351 | bin2str(txt) { |
| 1352 | return txt.replace(/\s*[01]{8}\s*/g, function(bin) { |
| 1353 | return String.fromCharCode(parseInt(bin, 2)) |
no outgoing calls
no test coverage detected