@elastic/eui
Version:
Elastic UI Component Library
22 lines (21 loc) • 824 B
JavaScript
/*
* 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.
*/
import { isNil } from '../predicate';
export var formatBoolean = function formatBoolean(value) {
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref$yes = _ref.yes,
yes = _ref$yes === void 0 ? 'Yes' : _ref$yes,
_ref$no = _ref.no,
no = _ref$no === void 0 ? 'No' : _ref$no,
_ref$nil = _ref.nil,
nil = _ref$nil === void 0 ? '' : _ref$nil;
if (isNil(value)) {
return nil;
}
return value ? yes : no;
};