clipboardTests top-level property

List<String? Function(String)> clipboardTests
final

Implementation

final clipboardTests = <String? Function(String)>[
  (str) {
    final match = httpsRe.firstMatch(str);
    if (match == null) return null;
    return match.group(1);
  },
  (str) => str.startsWith("npm:") ? str : null,
];