@skybloxsystems/ticket-bot
Version:
15 lines (14 loc) • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.modDocs = void 0;
var modDocs = {
name: 'mod',
category: 'Operators',
syntax: ['x % y', 'x mod y', 'mod(x, y)'],
description: 'Calculates the modulus, the remainder of an integer division.',
examples: ['7 % 3', '11 % 2', '10 mod 4', 'isOdd(x) = x % 2', 'isOdd(2)', 'isOdd(3)'],
seealso: ['divide']
};
exports.modDocs = modDocs;