not.js 383 B

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