Skip to main content

unset

Unset the specified variables.

Parameters

NameTypeDescription
varsstring | string[]Names of the variables to unset.

Variable

Any variable can be unset by this method.

Examples

Unset a single variable

version: 1.0.0
sections:
main:
- unset: variable1

Unset multiple variables

version: 1.0.0
sections:
main:
- unset:
- variable1
- variable2