JS: Add: test case for Object.groupBy

This commit is contained in:
Napalys
2024-11-18 12:52:49 +01:00
parent c02ad65fdc
commit 8ae05d8be4

View File

@@ -71,4 +71,5 @@ function test() {
sink(Map.groupBy(x, z => z)); // NOT OK
sink(Custom.groupBy(x, z => z)); // OK
sink(Object.groupBy(x, z => z)); // NOT OK -- This should be marked via taint step, but it is not.
}