basant307/AI_Governance_Project
045
1/**2 * This method returns an empty string.3 *4 * @static5 * @memberOf _6 * @since 4.13.07 * @category Util8 * @returns {string} Returns the empty string.9 * @example10 *11 * _.times(2, _.stubString);12 * // => ['', '']13 */14function stubString() {15 return '';16}17 18module.exports = stubString;19 