Skip to content

Commit 5dbf227

Browse files
authored
Add script to find features with ranged (≤) headline statuses (#2419)
1 parent bf78244 commit 5dbf227

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { features } from "../index";
2+
3+
for (const [key, data] of Object.entries(features)) {
4+
if ((data.status.baseline_low_date ?? "").includes("≤")) {
5+
console.log(key);
6+
}
7+
}

0 commit comments

Comments
 (0)