compact function

String compact(
  1. String input
)

input with its cosmetic grouping stripped. For Gtin, Imei and PaymentCardNumber, whose charsets are digits alone, so case-folding would be a no-op.

Implementation

String compact(String input) => input.replaceAll(cosmeticSeparators, '');