CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
join.js27 linesDownload Raw Back to lodash-es
1/** Used for built-in method references. */2var arrayProto = Array.prototype;3 4/* Built-in method references for those with the same name as other `lodash` methods. */5var nativeJoin = arrayProto.join;6 7/**8 * Converts all elements in `array` into a string separated by `separator`.9 *10 * @static11 * @memberOf _12 * @since 4.0.013 * @category Array14 * @param {Array} array The array to convert.15 * @param {string} [separator=','] The element separator.16 * @returns {string} Returns the joined string.17 * @example18 *19 * _.join(['a', 'b', 'c'], '~');20 * // => 'a~b~c'21 */22function join(array, separator) {23  return array == null ? '' : nativeJoin.call(array, separator);24}25 26export default join;27 
basant307/AI_Governance_Project · CoolFace