summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js
new file mode 100644
index 00000000..803047f7
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/node_modules/is-extglob/index.js
@@ -0,0 +1,11 @@
+/*!
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
+ *
+ * Copyright (c) 2014-2015, Jon Schlinkert.
+ * Licensed under the MIT License.
+ */
+
+module.exports = function isExtglob(str) {
+ return typeof str === 'string'
+ && /[@?!+*]\(/.test(str);
+};