isEmpty
- tests if the value is empty (using lodash function)
condition: {when: 'Foo',isEmpty: true,}// Foo = 'Bar' => false// Foo = '' => true// Foo = [] => true// Foo = ['aa', 'bb'] => false// Foo = {} => true// Foo = { a: 10 } => false// Foo = 10 => false// Foo = false => true// Foo = true => false