clipboardTests top-level property
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,
];