aboutsummaryrefslogtreecommitdiff
path: root/node_modules/glob-base/index.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/glob-base/index.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/glob-base/index.js')
-rw-r--r--node_modules/glob-base/index.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/node_modules/glob-base/index.js b/node_modules/glob-base/index.js
deleted file mode 100644
index 564b4a885..000000000
--- a/node_modules/glob-base/index.js
+++ /dev/null
@@ -1,51 +0,0 @@
-/*!
- * glob-base <https://github.com/jonschlinkert/glob-base>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-var path = require('path');
-var parent = require('glob-parent');
-var isGlob = require('is-glob');
-
-module.exports = function globBase(pattern) {
- if (typeof pattern !== 'string') {
- throw new TypeError('glob-base expects a string.');
- }
-
- var res = {};
- res.base = parent(pattern);
- res.isGlob = isGlob(pattern);
-
- if (res.base !== '.') {
- res.glob = pattern.substr(res.base.length);
- if (res.glob.charAt(0) === '/') {
- res.glob = res.glob.substr(1);
- }
- } else {
- res.glob = pattern;
- }
-
- if (!res.isGlob) {
- res.base = dirname(pattern);
- res.glob = res.base !== '.'
- ? pattern.substr(res.base.length)
- : pattern;
- }
-
- if (res.glob.substr(0, 2) === './') {
- res.glob = res.glob.substr(2);
- }
- if (res.glob.charAt(0) === '/') {
- res.glob = res.glob.substr(1);
- }
- return res;
-};
-
-function dirname(glob) {
- if (glob.slice(-1) === '/') return glob;
- return path.dirname(glob);
-}