module.exports = { 'name': 'unary', 'category': 'Operators', 'syntax': [ '-x', 'unary(x)' ], 'description': 'Inverse the sign of a value.', 'examples': [ '-4.5', '-(-5.6)' ], 'seealso': [ 'add', 'subtract' ] };