becomes this: ``` if(ssh_rule){ ssh_rule.map(i...
# typescript
j
becomes this:
Copy code
if(ssh_rule){
    ssh_rule.map(item => {
        item.securityGroupRule.cidrBlocks.apply((i) => {
            expect(i).not.contain("0.0.0.0/0")
        })
    })
}