Methods

nuke_nullΒΆ

nuke_null(a:Arr)

Used for command line arguments such as ['--vpc-id', my_vpc_id()].nuke_null() If my_vpc_id() is null the whole array is not needed
Source: stdlib.ngs:1488

Example

[1,2].nuke_null()  # [1,2]
[1,null].nuke_null()  # []