basant307/AI_Governance_Project
045
1var createCompounder = require('./_createCompounder');2 3/**4 * Converts `string`, as space separated words, to upper case.5 *6 * @static7 * @memberOf _8 * @since 4.0.09 * @category String10 * @param {string} [string=''] The string to convert.11 * @returns {string} Returns the upper cased string.12 * @example13 *14 * _.upperCase('--foo-bar');15 * // => 'FOO BAR'16 *17 * _.upperCase('fooBar');18 * // => 'FOO BAR'19 *20 * _.upperCase('__foo_bar__');21 * // => 'FOO BAR'22 */23var upperCase = createCompounder(function(result, word, index) {24 return result + (index ? ' ' : '') + word.toUpperCase();25});26 27module.exports = upperCase;28 