CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_getWrapDetails.js18 linesDownload Raw Back to lodash
1/** Used to match wrap detail comments. */2var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,3    reSplitDetails = /,? & /;4 5/**6 * Extracts wrapper details from the `source` body comment.7 *8 * @private9 * @param {string} source The source to inspect.10 * @returns {Array} Returns the wrapper details.11 */12function getWrapDetails(source) {13  var match = source.match(reWrapDetails);14  return match ? match[1].split(reSplitDetails) : [];15}16 17module.exports = getWrapDetails;18 
basant307/AI_Governance_Project · CoolFace