formatSelectionAsBinary static method

String formatSelectionAsBinary(
  1. List<int> bytes
)

Format selection as raw binary (for clipboard)

Implementation

static String formatSelectionAsBinary(List<int> bytes) {
  return String.fromCharCodes(bytes);
}