2 var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,
3 reSplitDetails = /,? & /;
12 function getWrapDetails(source) {
13 var match = source.match(reWrapDetails);
14 return match ? match[1].split(reSplitDetails) : [];
17 module.exports = getWrapDetails;