UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 80 custom components, custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-AR

10 lines (8 loc) 548 B
import { isObject } from '../../../utils/inspect'; 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 stringify `scopedSlot` items var stringifyRecordValues = function stringifyRecordValues(row, ignoreFields, includeFields, fieldsObj) { return isObject(row) ? stringifyObjectValues(sanitizeRow(row, ignoreFields, includeFields, fieldsObj)) : ''; }; export default stringifyRecordValues;