UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 75 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.

15 lines (13 loc) 496 B
import sanitizeRow from './sanitize-row' import stringifyObjectValues from './stringify-object-values' // Stringifies the values of a record, ignoring any special top level field keys // TODO: add option to strigify formatted/scopedSlot items, and only specific fields export default function stringifyRecordValues(row) { /* istanbul ignore else */ if (row instanceof Object) { return stringifyObjectValues(sanitizeRow(row)) } else { /* istanbul ignore next */ return '' } }