and.js 420 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.andDocs = void 0;
  6. var andDocs = {
  7. name: 'and',
  8. category: 'Logical',
  9. syntax: ['x and y', 'and(x, y)'],
  10. description: 'Logical and. Test whether two values are both defined with a nonzero/nonempty value.',
  11. examples: ['true and false', 'true and true', '2 and 4'],
  12. seealso: ['not', 'or', 'xor']
  13. };
  14. exports.andDocs = andDocs;