and.js 294 B

12345678
  1. export var andDocs = {
  2. name: 'and',
  3. category: 'Logical',
  4. syntax: ['x and y', 'and(x, y)'],
  5. description: 'Logical and. Test whether two values are both defined with a nonzero/nonempty value.',
  6. examples: ['true and false', 'true and true', '2 and 4'],
  7. seealso: ['not', 'or', 'xor']
  8. };