aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-extglob/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/is-extglob/index.js')
-rw-r--r--node_modules/is-extglob/index.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/is-extglob/index.js b/node_modules/is-extglob/index.js
deleted file mode 100644
index 803047f74..000000000
--- a/node_modules/is-extglob/index.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*!
- * 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);
-};