@elastic/eui
Version:
Elastic UI Component Library
29 lines (27 loc) • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SortDirectionType = exports.SortDirection = void 0;
var _propTypes = _interopRequireDefault(require("prop-types"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
var ASC = 'asc';
var DESC = 'desc';
var SortDirection = exports.SortDirection = Object.freeze({
ASC: ASC,
DESC: DESC,
isAsc: function isAsc(direction) {
return direction === ASC;
},
reverse: function reverse(direction) {
return this.isAsc(direction) ? DESC : ASC;
}
});
var SortDirectionType = exports.SortDirectionType = _propTypes.default.oneOf([ASC, DESC]);