|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
479 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | /** Used to match wrap detail comments. */
|
|---|
| 2 | var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,
|
|---|
| 3 | reSplitDetails = /,? & /;
|
|---|
| 4 |
|
|---|
| 5 | /**
|
|---|
| 6 | * Extracts wrapper details from the `source` body comment.
|
|---|
| 7 | *
|
|---|
| 8 | * @private
|
|---|
| 9 | * @param {string} source The source to inspect.
|
|---|
| 10 | * @returns {Array} Returns the wrapper details.
|
|---|
| 11 | */
|
|---|
| 12 | function getWrapDetails(source) {
|
|---|
| 13 | var match = source.match(reWrapDetails);
|
|---|
| 14 | return match ? match[1].split(reSplitDetails) : [];
|
|---|
| 15 | }
|
|---|
| 16 |
|
|---|
| 17 | module.exports = getWrapDetails;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.