UNPKG

383 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.notDocs = void 0;
7var notDocs = {
8 name: 'not',
9 category: 'Logical',
10 syntax: ['not x', 'not(x)'],
11 description: 'Logical not. Flips the boolean value of given argument.',
12 examples: ['not true', 'not false', 'not 2', 'not 0'],
13 seealso: ['and', 'or', 'xor']
14};
15exports.notDocs = notDocs;
\No newline at end of file