plotly.js
Version:
The open source javascript graphing library that powers plotly
29 lines (23 loc) • 599 B
JavaScript
module.exports = {
COMPARISON_OPS: ['=', '!=', '<', '>=', '>', '<='],
COMPARISON_OPS2: ['=', '<', '>=', '>', '<='],
INTERVAL_OPS: ['[]', '()', '[)', '(]', '][', ')(', '](', ')['],
SET_OPS: ['{}', '}{'],
CONSTRAINT_REDUCTION: {
// for contour constraints, open/closed endpoints are equivalent
'=': '=',
'<': '<',
'<=': '<',
'>': '>',
'>=': '>',
'[]': '[]',
'()': '[]',
'[)': '[]',
'(]': '[]',
'][': '][',
')(': '][',
'](': '][',
')[': ']['
}
};
;