UNPKG

@jplorg/jpl

Version:
50 lines (45 loc) 906 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OPM_SUBTRACTION = exports.OPM_REMAINDER = exports.OPM_MULTIPLICATION = exports.OPM_DIVISION = exports.OPM_ADDITION = void 0; /** * Sub operator for OP_CALCULATION * * { by: function } * * { by: [op] } */ const OPM_ADDITION = exports.OPM_ADDITION = '+'; /** * Sub operator for OP_CALCULATION * * { by: function } * * { by: [op] } */ const OPM_DIVISION = exports.OPM_DIVISION = '/'; /** * Sub operator for OP_CALCULATION * * { by: function } * * { by: [op] } */ const OPM_MULTIPLICATION = exports.OPM_MULTIPLICATION = '*'; /** * Sub operator for OP_CALCULATION * * { by: function } * * { by: [op] } */ const OPM_REMAINDER = exports.OPM_REMAINDER = '%'; /** * Sub operator for OP_CALCULATION * * { by: function } * * { by: [op] } */ const OPM_SUBTRACTION = exports.OPM_SUBTRACTION = '-';