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.
13 lines (10 loc) • 385 B
JavaScript
import upperFirst from './upper-first'
/**
* Suffix can be a falsey value so nothing is appended to string.
* (helps when looping over props & some shouldn't change)
* Use data last parameters to allow for currying.
* @param {string} suffix
* @param {string} str
*/
const suffixPropName = (suffix, str) => str + (suffix ? upperFirst(suffix) : '')
export default suffixPropName