stripBytesPrefix method

String stripBytesPrefix()

Implementation

String stripBytesPrefix() {
  if (startsWith(Bytes.bytesPrefix)) {
    return replaceFirst(Bytes.bytesPrefix, '');
  }
  return this;
}