We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b5ea19 commit 7da9794Copy full SHA for 7da9794
pkgs/yaml/lib/src/utils.dart
@@ -49,4 +49,4 @@ bool isLowSurrogate(int codeUnit) => codeUnit >>> 10 == 0x37;
49
bool isResolvedYamlTag(String? tag, String canonicalSuffix) =>
50
tag == null ||
51
!tag.startsWith('tag:yaml.org,2002:') || // Leaky prefix condition.
52
- !tag.endsWith(canonicalSuffix);
+ tag.endsWith(canonicalSuffix);
0 commit comments