UNPKG

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