UNPKG

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