6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
export default [
|
|
{ value: '>', text: 'above' },
|
|
{ value: '>=', text: 'above or equal to' },
|
|
{ value: '<', text: 'below' },
|
|
{ value: '<=', text: 'below or equal to' },
|
|
];
|