00001
00002 var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,
00003 reSplitDetails = /,? & /;
00004
00012 function getWrapDetails(source) {
00013 var match = source.match(reWrapDetails);
00014 return match ? match[1].split(reSplitDetails) : [];
00015 }
00016
00017 module.exports = getWrapDetails;