UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

10 lines 359 B
import { valueGetter as autocompleteValueGetter } from "../../autocompleteType/accessors/index.mjs"; /** * Defines the value being displayed in an dropdown-typed cells. * * @param {*} value The value to be displayed. * @returns {*} The final value of the cell. */ export function valueGetter(value) { return autocompleteValueGetter.call(this, value); }