20 lines
307 B
JavaScript

module.exports = {
'name': 'not',
'category': 'Logical',
'syntax': [
'!x',
'not x',
'not(x)'
],
'description': 'Logical not. Flips the boolean value of given argument.',
'examples': [
'!true',
'not false',
'!2',
'!0'
],
'seealso': [
'and', 'or', 'xor'
]
};