UNPKG

@gravity-ui/data-source

Version:
17 lines (16 loc) 454 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatNullableValue = void 0; var _constants = require("../constants"); var formatNullableValue = exports.formatNullableValue = function formatNullableValue(value) { if (value === undefined) { return _constants.undefinedSymbol; } if (value === null) { return _constants.nullSymbol; } return value; }; // #sourceMappingURL=formatNullableValue.js.map