feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

View File

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

View File

@@ -0,0 +1,8 @@
export var notDocs = {
name: 'not',
category: 'Logical',
syntax: ['not x', 'not(x)'],
description: 'Logical not. Flips the boolean value of given argument.',
examples: ['not true', 'not false', 'not 2', 'not 0'],
seealso: ['and', 'or', 'xor']
};

View File

@@ -0,0 +1,8 @@
export var orDocs = {
name: 'or',
category: 'Logical',
syntax: ['x or y', 'or(x, y)'],
description: 'Logical or. Test if at least one value is defined with a nonzero/nonempty value.',
examples: ['true or false', 'false or false', '0 or 4'],
seealso: ['not', 'and', 'xor']
};

View File

@@ -0,0 +1,8 @@
export var xorDocs = {
name: 'xor',
category: 'Logical',
syntax: ['x xor y', 'xor(x, y)'],
description: 'Logical exclusive or, xor. Test whether one and only one value is defined with a nonzero/nonempty value.',
examples: ['true xor false', 'false xor false', 'true xor true', '0 xor 4'],
seealso: ['not', 'and', 'or']
};