main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
441 bytes
|
Rev | Line | |
---|
[d565449] | 1 | /*!
|
---|
| 2 | * is-extglob <https://github.com/jonschlinkert/is-extglob>
|
---|
| 3 | *
|
---|
| 4 | * Copyright (c) 2014-2016, Jon Schlinkert.
|
---|
| 5 | * Licensed under the MIT License.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | module.exports = function isExtglob(str) {
|
---|
| 9 | if (typeof str !== 'string' || str === '') {
|
---|
| 10 | return false;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | var match;
|
---|
| 14 | while ((match = /(\\).|([@?!+*]\(.*\))/g.exec(str))) {
|
---|
| 15 | if (match[2]) return true;
|
---|
| 16 | str = str.slice(match.index + match[0].length);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | return false;
|
---|
| 20 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.