flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
17
BACK_BACK/node_modules/lodash-es/_getWrapDetails.js
generated
vendored
Executable file
17
BACK_BACK/node_modules/lodash-es/_getWrapDetails.js
generated
vendored
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
/** Used to match wrap detail comments. */
|
||||
var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,
|
||||
reSplitDetails = /,? & /;
|
||||
|
||||
/**
|
||||
* Extracts wrapper details from the `source` body comment.
|
||||
*
|
||||
* @private
|
||||
* @param {string} source The source to inspect.
|
||||
* @returns {Array} Returns the wrapper details.
|
||||
*/
|
||||
function getWrapDetails(source) {
|
||||
var match = source.match(reWrapDetails);
|
||||
return match ? match[1].split(reSplitDetails) : [];
|
||||
}
|
||||
|
||||
export default getWrapDetails;
|
||||
Loading…
Add table
Add a link
Reference in a new issue