summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/filesystem
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/filesystem')
-rw-r--r--node_modules/locutus/php/filesystem/basename.js34
-rw-r--r--node_modules/locutus/php/filesystem/basename.js.map1
-rw-r--r--node_modules/locutus/php/filesystem/dirname.js16
-rw-r--r--node_modules/locutus/php/filesystem/dirname.js.map1
-rw-r--r--node_modules/locutus/php/filesystem/file_get_contents.js26
-rw-r--r--node_modules/locutus/php/filesystem/file_get_contents.js.map1
-rw-r--r--node_modules/locutus/php/filesystem/index.js8
-rw-r--r--node_modules/locutus/php/filesystem/index.js.map1
-rw-r--r--node_modules/locutus/php/filesystem/pathinfo.js146
-rw-r--r--node_modules/locutus/php/filesystem/pathinfo.js.map1
-rw-r--r--node_modules/locutus/php/filesystem/realpath.js60
-rw-r--r--node_modules/locutus/php/filesystem/realpath.js.map1
12 files changed, 296 insertions, 0 deletions
diff --git a/node_modules/locutus/php/filesystem/basename.js b/node_modules/locutus/php/filesystem/basename.js
new file mode 100644
index 0000000..0286673
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/basename.js
@@ -0,0 +1,34 @@
+'use strict';
+
+module.exports = function basename(path, suffix) {
+ // discuss at: http://locutus.io/php/basename/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Ash Searle (http://hexmen.com/blog/)
+ // improved by: Lincoln Ramsay
+ // improved by: djmix
+ // improved by: Dmitry Gorelenkov
+ // example 1: basename('/www/site/home.htm', '.htm')
+ // returns 1: 'home'
+ // example 2: basename('ecra.php?p=1')
+ // returns 2: 'ecra.php?p=1'
+ // example 3: basename('/some/path/')
+ // returns 3: 'path'
+ // example 4: basename('/some/path_ext.ext/','.ext')
+ // returns 4: 'path_ext'
+
+ var b = path;
+ var lastChar = b.charAt(b.length - 1);
+
+ if (lastChar === '/' || lastChar === '\\') {
+ b = b.slice(0, -1);
+ }
+
+ b = b.replace(/^.*[/\\]/g, '');
+
+ if (typeof suffix === 'string' && b.substr(b.length - suffix.length) === suffix) {
+ b = b.substr(0, b.length - suffix.length);
+ }
+
+ return b;
+};
+//# sourceMappingURL=basename.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/basename.js.map b/node_modules/locutus/php/filesystem/basename.js.map
new file mode 100644
index 0000000..e426d39
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/basename.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/basename.js"],"names":["module","exports","basename","path","suffix","b","lastChar","charAt","length","slice","replace","substr"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,QAAT,CAAmBC,IAAnB,EAAyBC,MAAzB,EAAiC;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,IAAIF,IAAR;AACA,MAAIG,WAAWD,EAAEE,MAAF,CAASF,EAAEG,MAAF,GAAW,CAApB,CAAf;;AAEA,MAAIF,aAAa,GAAb,IAAoBA,aAAa,IAArC,EAA2C;AACzCD,QAAIA,EAAEI,KAAF,CAAQ,CAAR,EAAW,CAAC,CAAZ,CAAJ;AACD;;AAEDJ,MAAIA,EAAEK,OAAF,CAAU,WAAV,EAAuB,EAAvB,CAAJ;;AAEA,MAAI,OAAON,MAAP,KAAkB,QAAlB,IAA8BC,EAAEM,MAAF,CAASN,EAAEG,MAAF,GAAWJ,OAAOI,MAA3B,MAAuCJ,MAAzE,EAAiF;AAC/EC,QAAIA,EAAEM,MAAF,CAAS,CAAT,EAAYN,EAAEG,MAAF,GAAWJ,OAAOI,MAA9B,CAAJ;AACD;;AAED,SAAOH,CAAP;AACD,CA9BD","file":"basename.js","sourcesContent":["module.exports = function basename (path, suffix) {\n // discuss at: http://locutus.io/php/basename/\n // original by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Ash Searle (http://hexmen.com/blog/)\n // improved by: Lincoln Ramsay\n // improved by: djmix\n // improved by: Dmitry Gorelenkov\n // example 1: basename('/www/site/home.htm', '.htm')\n // returns 1: 'home'\n // example 2: basename('ecra.php?p=1')\n // returns 2: 'ecra.php?p=1'\n // example 3: basename('/some/path/')\n // returns 3: 'path'\n // example 4: basename('/some/path_ext.ext/','.ext')\n // returns 4: 'path_ext'\n\n var b = path\n var lastChar = b.charAt(b.length - 1)\n\n if (lastChar === '/' || lastChar === '\\\\') {\n b = b.slice(0, -1)\n }\n\n b = b.replace(/^.*[/\\\\]/g, '')\n\n if (typeof suffix === 'string' && b.substr(b.length - suffix.length) === suffix) {\n b = b.substr(0, b.length - suffix.length)\n }\n\n return b\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/dirname.js b/node_modules/locutus/php/filesystem/dirname.js
new file mode 100644
index 0000000..9d9c7b0
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/dirname.js
@@ -0,0 +1,16 @@
+'use strict';
+
+module.exports = function dirname(path) {
+ // discuss at: http://locutus.io/php/dirname/
+ // original by: Ozh
+ // improved by: XoraX (http://www.xorax.info)
+ // example 1: dirname('/etc/passwd')
+ // returns 1: '/etc'
+ // example 2: dirname('c:/Temp/x')
+ // returns 2: 'c:/Temp'
+ // example 3: dirname('/dir/test/')
+ // returns 3: '/dir'
+
+ return path.replace(/\\/g, '/').replace(/\/[^/]*\/?$/, '');
+};
+//# sourceMappingURL=dirname.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/dirname.js.map b/node_modules/locutus/php/filesystem/dirname.js.map
new file mode 100644
index 0000000..d700a0a
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/dirname.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/dirname.js"],"names":["module","exports","dirname","path","replace"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,IAAlB,EAAwB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOA,KAAKC,OAAL,CAAa,KAAb,EAAoB,GAApB,EACJA,OADI,CACI,aADJ,EACmB,EADnB,CAAP;AAED,CAbD","file":"dirname.js","sourcesContent":["module.exports = function dirname (path) {\n // discuss at: http://locutus.io/php/dirname/\n // original by: Ozh\n // improved by: XoraX (http://www.xorax.info)\n // example 1: dirname('/etc/passwd')\n // returns 1: '/etc'\n // example 2: dirname('c:/Temp/x')\n // returns 2: 'c:/Temp'\n // example 3: dirname('/dir/test/')\n // returns 3: '/dir'\n\n return path.replace(/\\\\/g, '/')\n .replace(/\\/[^/]*\\/?$/, '')\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/file_get_contents.js b/node_modules/locutus/php/filesystem/file_get_contents.js
new file mode 100644
index 0000000..8b861e8
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/file_get_contents.js
@@ -0,0 +1,26 @@
+'use strict';
+
+module.exports = function file_get_contents(url, flags, context, offset, maxLen) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/file_get_contents/
+ // original by: Legaev Andrey
+ // input by: Jani Hartikainen
+ // input by: Raphael (Ao) RUDLER
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // reimplemented by: Kevin van Zonneveld (http://kvz.io)
+ // note 1: This used to work in the browser via blocking ajax
+ // note 1: requests in 1.3.2 and earlier
+ // note 1: but then people started using that for real app,
+ // note 1: so we deprecated this behavior,
+ // note 1: so this function is now Node-only
+ // example 1: var $buf = file_get_contents('test/never-change.txt')
+ // example 1: var $result = $buf.indexOf('hash') !== -1
+ // returns 1: true
+
+ var fs = require('fs');
+
+ return fs.readFileSync(url, 'utf-8');
+};
+//# sourceMappingURL=file_get_contents.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/file_get_contents.js.map b/node_modules/locutus/php/filesystem/file_get_contents.js.map
new file mode 100644
index 0000000..fe29d36
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/file_get_contents.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/file_get_contents.js"],"names":["module","exports","file_get_contents","url","flags","context","offset","maxLen","fs","require","readFileSync"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,iBAAT,CAA4BC,GAA5B,EAAiCC,KAAjC,EAAwCC,OAAxC,EAAiDC,MAAjD,EAAyDC,MAAzD,EAAiE;AAAE;AAClF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,KAAKC,QAAQ,IAAR,CAAT;;AAEA,SAAOD,GAAGE,YAAH,CAAgBP,GAAhB,EAAqB,OAArB,CAAP;AACD,CArBD","file":"file_get_contents.js","sourcesContent":["module.exports = function file_get_contents (url, flags, context, offset, maxLen) { // eslint-disable-line camelcase\n // discuss at: http://locutus.io/php/file_get_contents/\n // original by: Legaev Andrey\n // input by: Jani Hartikainen\n // input by: Raphael (Ao) RUDLER\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // reimplemented by: Kevin van Zonneveld (http://kvz.io)\n // note 1: This used to work in the browser via blocking ajax\n // note 1: requests in 1.3.2 and earlier\n // note 1: but then people started using that for real app,\n // note 1: so we deprecated this behavior,\n // note 1: so this function is now Node-only\n // example 1: var $buf = file_get_contents('test/never-change.txt')\n // example 1: var $result = $buf.indexOf('hash') !== -1\n // returns 1: true\n\n var fs = require('fs')\n\n return fs.readFileSync(url, 'utf-8')\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/index.js b/node_modules/locutus/php/filesystem/index.js
new file mode 100644
index 0000000..02bb422
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/index.js
@@ -0,0 +1,8 @@
+'use strict';
+
+module.exports['basename'] = require('./basename');
+module.exports['dirname'] = require('./dirname');
+module.exports['file_get_contents'] = require('./file_get_contents');
+module.exports['pathinfo'] = require('./pathinfo');
+module.exports['realpath'] = require('./realpath');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/index.js.map b/node_modules/locutus/php/filesystem/index.js.map
new file mode 100644
index 0000000..aa46186
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B;AACAF,OAAOC,OAAP,CAAe,mBAAf,IAAsCC,QAAQ,qBAAR,CAAtC;AACAF,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B;AACAF,OAAOC,OAAP,CAAe,UAAf,IAA6BC,QAAQ,YAAR,CAA7B","file":"index.js","sourcesContent":["module.exports['basename'] = require('./basename')\nmodule.exports['dirname'] = require('./dirname')\nmodule.exports['file_get_contents'] = require('./file_get_contents')\nmodule.exports['pathinfo'] = require('./pathinfo')\nmodule.exports['realpath'] = require('./realpath')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/pathinfo.js b/node_modules/locutus/php/filesystem/pathinfo.js
new file mode 100644
index 0000000..2184891
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/pathinfo.js
@@ -0,0 +1,146 @@
+'use strict';
+
+module.exports = function pathinfo(path, options) {
+ // discuss at: http://locutus.io/php/pathinfo/
+ // original by: Nate
+ // revised by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Dmitry Gorelenkov
+ // input by: Timo
+ // note 1: Inspired by actual PHP source: php5-5.2.6/ext/standard/string.c line #1559
+ // note 1: The way the bitwise arguments are handled allows for greater flexibility
+ // note 1: & compatability. We might even standardize this
+ // note 1: code and use a similar approach for
+ // note 1: other bitwise PHP functions
+ // note 1: Locutus tries very hard to stay away from a core.js
+ // note 1: file with global dependencies, because we like
+ // note 1: that you can just take a couple of functions and be on your way.
+ // note 1: But by way we implemented this function,
+ // note 1: if you want you can still declare the PATHINFO_*
+ // note 1: yourself, and then you can use:
+ // note 1: pathinfo('/www/index.html', PATHINFO_BASENAME | PATHINFO_EXTENSION);
+ // note 1: which makes it fully compliant with PHP syntax.
+ // example 1: pathinfo('/www/htdocs/index.html', 1)
+ // returns 1: '/www/htdocs'
+ // example 2: pathinfo('/www/htdocs/index.html', 'PATHINFO_BASENAME')
+ // returns 2: 'index.html'
+ // example 3: pathinfo('/www/htdocs/index.html', 'PATHINFO_EXTENSION')
+ // returns 3: 'html'
+ // example 4: pathinfo('/www/htdocs/index.html', 'PATHINFO_FILENAME')
+ // returns 4: 'index'
+ // example 5: pathinfo('/www/htdocs/index.html', 2 | 4)
+ // returns 5: {basename: 'index.html', extension: 'html'}
+ // example 6: pathinfo('/www/htdocs/index.html', 'PATHINFO_ALL')
+ // returns 6: {dirname: '/www/htdocs', basename: 'index.html', extension: 'html', filename: 'index'}
+ // example 7: pathinfo('/www/htdocs/index.html')
+ // returns 7: {dirname: '/www/htdocs', basename: 'index.html', extension: 'html', filename: 'index'}
+
+ var basename = require('../filesystem/basename');
+ var opt = '';
+ var realOpt = '';
+ var optName = '';
+ var optTemp = 0;
+ var tmpArr = {};
+ var cnt = 0;
+ var i = 0;
+ var haveBasename = false;
+ var haveExtension = false;
+ var haveFilename = false;
+
+ // Input defaulting & sanitation
+ if (!path) {
+ return false;
+ }
+ if (!options) {
+ options = 'PATHINFO_ALL';
+ }
+
+ // Initialize binary arguments. Both the string & integer (constant) input is
+ // allowed
+ var OPTS = {
+ 'PATHINFO_DIRNAME': 1,
+ 'PATHINFO_BASENAME': 2,
+ 'PATHINFO_EXTENSION': 4,
+ 'PATHINFO_FILENAME': 8,
+ 'PATHINFO_ALL': 0
+ };
+ // PATHINFO_ALL sums up all previously defined PATHINFOs (could just pre-calculate)
+ for (optName in OPTS) {
+ if (OPTS.hasOwnProperty(optName)) {
+ OPTS.PATHINFO_ALL = OPTS.PATHINFO_ALL | OPTS[optName];
+ }
+ }
+ if (typeof options !== 'number') {
+ // Allow for a single string or an array of string flags
+ options = [].concat(options);
+ for (i = 0; i < options.length; i++) {
+ // Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4
+ if (OPTS[options[i]]) {
+ optTemp = optTemp | OPTS[options[i]];
+ }
+ }
+ options = optTemp;
+ }
+
+ // Internal Functions
+ var _getExt = function _getExt(path) {
+ var str = path + '';
+ var dotP = str.lastIndexOf('.') + 1;
+ return !dotP ? false : dotP !== str.length ? str.substr(dotP) : '';
+ };
+
+ // Gather path infos
+ if (options & OPTS.PATHINFO_DIRNAME) {
+ var dirName = path.replace(/\\/g, '/').replace(/\/[^/]*\/?$/, ''); // dirname
+ tmpArr.dirname = dirName === path ? '.' : dirName;
+ }
+
+ if (options & OPTS.PATHINFO_BASENAME) {
+ if (haveBasename === false) {
+ haveBasename = basename(path);
+ }
+ tmpArr.basename = haveBasename;
+ }
+
+ if (options & OPTS.PATHINFO_EXTENSION) {
+ if (haveBasename === false) {
+ haveBasename = basename(path);
+ }
+ if (haveExtension === false) {
+ haveExtension = _getExt(haveBasename);
+ }
+ if (haveExtension !== false) {
+ tmpArr.extension = haveExtension;
+ }
+ }
+
+ if (options & OPTS.PATHINFO_FILENAME) {
+ if (haveBasename === false) {
+ haveBasename = basename(path);
+ }
+ if (haveExtension === false) {
+ haveExtension = _getExt(haveBasename);
+ }
+ if (haveFilename === false) {
+ haveFilename = haveBasename.slice(0, haveBasename.length - (haveExtension ? haveExtension.length + 1 : haveExtension === false ? 0 : 1));
+ }
+
+ tmpArr.filename = haveFilename;
+ }
+
+ // If array contains only 1 element: return string
+ cnt = 0;
+ for (opt in tmpArr) {
+ if (tmpArr.hasOwnProperty(opt)) {
+ cnt++;
+ realOpt = opt;
+ }
+ }
+ if (cnt === 1) {
+ return tmpArr[realOpt];
+ }
+
+ // Return full-blown array
+ return tmpArr;
+};
+//# sourceMappingURL=pathinfo.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/pathinfo.js.map b/node_modules/locutus/php/filesystem/pathinfo.js.map
new file mode 100644
index 0000000..d0ece8f
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/pathinfo.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/pathinfo.js"],"names":["module","exports","pathinfo","path","options","basename","require","opt","realOpt","optName","optTemp","tmpArr","cnt","i","haveBasename","haveExtension","haveFilename","OPTS","hasOwnProperty","PATHINFO_ALL","concat","length","_getExt","str","dotP","lastIndexOf","substr","PATHINFO_DIRNAME","dirName","replace","dirname","PATHINFO_BASENAME","PATHINFO_EXTENSION","extension","PATHINFO_FILENAME","slice","filename"],"mappings":"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","file":"pathinfo.js","sourcesContent":["module.exports = function pathinfo (path, options) {\n // discuss at: http://locutus.io/php/pathinfo/\n // original by: Nate\n // revised by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Dmitry Gorelenkov\n // input by: Timo\n // note 1: Inspired by actual PHP source: php5-5.2.6/ext/standard/string.c line #1559\n // note 1: The way the bitwise arguments are handled allows for greater flexibility\n // note 1: & compatability. We might even standardize this\n // note 1: code and use a similar approach for\n // note 1: other bitwise PHP functions\n // note 1: Locutus tries very hard to stay away from a core.js\n // note 1: file with global dependencies, because we like\n // note 1: that you can just take a couple of functions and be on your way.\n // note 1: But by way we implemented this function,\n // note 1: if you want you can still declare the PATHINFO_*\n // note 1: yourself, and then you can use:\n // note 1: pathinfo('/www/index.html', PATHINFO_BASENAME | PATHINFO_EXTENSION);\n // note 1: which makes it fully compliant with PHP syntax.\n // example 1: pathinfo('/www/htdocs/index.html', 1)\n // returns 1: '/www/htdocs'\n // example 2: pathinfo('/www/htdocs/index.html', 'PATHINFO_BASENAME')\n // returns 2: 'index.html'\n // example 3: pathinfo('/www/htdocs/index.html', 'PATHINFO_EXTENSION')\n // returns 3: 'html'\n // example 4: pathinfo('/www/htdocs/index.html', 'PATHINFO_FILENAME')\n // returns 4: 'index'\n // example 5: pathinfo('/www/htdocs/index.html', 2 | 4)\n // returns 5: {basename: 'index.html', extension: 'html'}\n // example 6: pathinfo('/www/htdocs/index.html', 'PATHINFO_ALL')\n // returns 6: {dirname: '/www/htdocs', basename: 'index.html', extension: 'html', filename: 'index'}\n // example 7: pathinfo('/www/htdocs/index.html')\n // returns 7: {dirname: '/www/htdocs', basename: 'index.html', extension: 'html', filename: 'index'}\n\n var basename = require('../filesystem/basename')\n var opt = ''\n var realOpt = ''\n var optName = ''\n var optTemp = 0\n var tmpArr = {}\n var cnt = 0\n var i = 0\n var haveBasename = false\n var haveExtension = false\n var haveFilename = false\n\n // Input defaulting & sanitation\n if (!path) {\n return false\n }\n if (!options) {\n options = 'PATHINFO_ALL'\n }\n\n // Initialize binary arguments. Both the string & integer (constant) input is\n // allowed\n var OPTS = {\n 'PATHINFO_DIRNAME': 1,\n 'PATHINFO_BASENAME': 2,\n 'PATHINFO_EXTENSION': 4,\n 'PATHINFO_FILENAME': 8,\n 'PATHINFO_ALL': 0\n }\n // PATHINFO_ALL sums up all previously defined PATHINFOs (could just pre-calculate)\n for (optName in OPTS) {\n if (OPTS.hasOwnProperty(optName)) {\n OPTS.PATHINFO_ALL = OPTS.PATHINFO_ALL | OPTS[optName]\n }\n }\n if (typeof options !== 'number') {\n // Allow for a single string or an array of string flags\n options = [].concat(options)\n for (i = 0; i < options.length; i++) {\n // Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4\n if (OPTS[options[i]]) {\n optTemp = optTemp | OPTS[options[i]]\n }\n }\n options = optTemp\n }\n\n // Internal Functions\n var _getExt = function (path) {\n var str = path + ''\n var dotP = str.lastIndexOf('.') + 1\n return !dotP ? false : dotP !== str.length ? str.substr(dotP) : ''\n }\n\n // Gather path infos\n if (options & OPTS.PATHINFO_DIRNAME) {\n var dirName = path\n .replace(/\\\\/g, '/')\n .replace(/\\/[^/]*\\/?$/, '') // dirname\n tmpArr.dirname = dirName === path ? '.' : dirName\n }\n\n if (options & OPTS.PATHINFO_BASENAME) {\n if (haveBasename === false) {\n haveBasename = basename(path)\n }\n tmpArr.basename = haveBasename\n }\n\n if (options & OPTS.PATHINFO_EXTENSION) {\n if (haveBasename === false) {\n haveBasename = basename(path)\n }\n if (haveExtension === false) {\n haveExtension = _getExt(haveBasename)\n }\n if (haveExtension !== false) {\n tmpArr.extension = haveExtension\n }\n }\n\n if (options & OPTS.PATHINFO_FILENAME) {\n if (haveBasename === false) {\n haveBasename = basename(path)\n }\n if (haveExtension === false) {\n haveExtension = _getExt(haveBasename)\n }\n if (haveFilename === false) {\n haveFilename = haveBasename.slice(0, haveBasename.length - (haveExtension\n ? haveExtension.length + 1\n : haveExtension === false\n ? 0\n : 1\n )\n )\n }\n\n tmpArr.filename = haveFilename\n }\n\n // If array contains only 1 element: return string\n cnt = 0\n for (opt in tmpArr) {\n if (tmpArr.hasOwnProperty(opt)) {\n cnt++\n realOpt = opt\n }\n }\n if (cnt === 1) {\n return tmpArr[realOpt]\n }\n\n // Return full-blown array\n return tmpArr\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/realpath.js b/node_modules/locutus/php/filesystem/realpath.js
new file mode 100644
index 0000000..f5b5515
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/realpath.js
@@ -0,0 +1,60 @@
+'use strict';
+
+module.exports = function realpath(path) {
+ // discuss at: http://locutus.io/php/realpath/
+ // original by: mk.keck
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // note 1: Returned path is an url like e.g. 'http://yourhost.tld/path/'
+ // example 1: realpath('some/dir/.././_supporters/pj_test_supportfile_1.htm')
+ // returns 1: 'some/_supporters/pj_test_supportfile_1.htm'
+
+ if (typeof window === 'undefined') {
+ var nodePath = require('path');
+ return nodePath.normalize(path);
+ }
+
+ var p = 0;
+ var arr = []; // Save the root, if not given
+ var r = this.window.location.href; // Avoid input failures
+
+ // Check if there's a port in path (like 'http://')
+ path = (path + '').replace('\\', '/');
+ if (path.indexOf('://') !== -1) {
+ p = 1;
+ }
+
+ // Ok, there's not a port in path, so let's take the root
+ if (!p) {
+ path = r.substring(0, r.lastIndexOf('/') + 1) + path;
+ }
+
+ // Explode the given path into it's parts
+ arr = path.split('/'); // The path is an array now
+ path = []; // Foreach part make a check
+ for (var k in arr) {
+ // This is'nt really interesting
+ if (arr[k] === '.') {
+ continue;
+ }
+ // This reduces the realpath
+ if (arr[k] === '..') {
+ /* But only if there more than 3 parts in the path-array.
+ * The first three parts are for the uri */
+ if (path.length > 3) {
+ path.pop();
+ }
+ } else {
+ // This adds parts to the realpath
+ // But only if the part is not empty or the uri
+ // (the first three parts ar needed) was not
+ // saved
+ if (path.length < 2 || arr[k] !== '') {
+ path.push(arr[k]);
+ }
+ }
+ }
+
+ // Returns the absloute path as a string
+ return path.join('/');
+};
+//# sourceMappingURL=realpath.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/filesystem/realpath.js.map b/node_modules/locutus/php/filesystem/realpath.js.map
new file mode 100644
index 0000000..4e5046e
--- /dev/null
+++ b/node_modules/locutus/php/filesystem/realpath.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/filesystem/realpath.js"],"names":["module","exports","realpath","path","window","nodePath","require","normalize","p","arr","r","location","href","replace","indexOf","substring","lastIndexOf","split","k","length","pop","push","join"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,QAAT,CAAmBC,IAAnB,EAAyB;AACxC;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAI,OAAOC,MAAP,KAAkB,WAAtB,EAAmC;AACjC,QAAIC,WAAWC,QAAQ,MAAR,CAAf;AACA,WAAOD,SAASE,SAAT,CAAmBJ,IAAnB,CAAP;AACD;;AAED,MAAIK,IAAI,CAAR;AACA,MAAIC,MAAM,EAAV,CAdwC,CAc3B;AACb,MAAIC,IAAI,KAAKN,MAAL,CAAYO,QAAZ,CAAqBC,IAA7B,CAfwC,CAeN;;AAElC;AACAT,SAAO,CAACA,OAAO,EAAR,EAAYU,OAAZ,CAAoB,IAApB,EAA0B,GAA1B,CAAP;AACA,MAAIV,KAAKW,OAAL,CAAa,KAAb,MAAwB,CAAC,CAA7B,EAAgC;AAC9BN,QAAI,CAAJ;AACD;;AAED;AACA,MAAI,CAACA,CAAL,EAAQ;AACNL,WAAOO,EAAEK,SAAF,CAAY,CAAZ,EAAeL,EAAEM,WAAF,CAAc,GAAd,IAAqB,CAApC,IAAyCb,IAAhD;AACD;;AAED;AACAM,QAAMN,KAAKc,KAAL,CAAW,GAAX,CAAN,CA7BwC,CA6BlB;AACtBd,SAAO,EAAP,CA9BwC,CA8B9B;AACV,OAAK,IAAIe,CAAT,IAAcT,GAAd,EAAmB;AAAE;AACnB,QAAIA,IAAIS,CAAJ,MAAW,GAAf,EAAoB;AAClB;AACD;AACD;AACA,QAAIT,IAAIS,CAAJ,MAAW,IAAf,EAAqB;AACnB;;AAEA,UAAIf,KAAKgB,MAAL,GAAc,CAAlB,EAAqB;AACnBhB,aAAKiB,GAAL;AACD;AACF,KAND,MAMO;AACL;AACA;AACA;AACA;AACA,UAAKjB,KAAKgB,MAAL,GAAc,CAAf,IAAsBV,IAAIS,CAAJ,MAAW,EAArC,EAA0C;AACxCf,aAAKkB,IAAL,CAAUZ,IAAIS,CAAJ,CAAV;AACD;AACF;AACF;;AAED;AACA,SAAOf,KAAKmB,IAAL,CAAU,GAAV,CAAP;AACD,CAvDD","file":"realpath.js","sourcesContent":["module.exports = function realpath (path) {\n // discuss at: http://locutus.io/php/realpath/\n // original by: mk.keck\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // note 1: Returned path is an url like e.g. 'http://yourhost.tld/path/'\n // example 1: realpath('some/dir/.././_supporters/pj_test_supportfile_1.htm')\n // returns 1: 'some/_supporters/pj_test_supportfile_1.htm'\n\n if (typeof window === 'undefined') {\n var nodePath = require('path')\n return nodePath.normalize(path)\n }\n\n var p = 0\n var arr = [] // Save the root, if not given\n var r = this.window.location.href // Avoid input failures\n\n // Check if there's a port in path (like 'http://')\n path = (path + '').replace('\\\\', '/')\n if (path.indexOf('://') !== -1) {\n p = 1\n }\n\n // Ok, there's not a port in path, so let's take the root\n if (!p) {\n path = r.substring(0, r.lastIndexOf('/') + 1) + path\n }\n\n // Explode the given path into it's parts\n arr = path.split('/') // The path is an array now\n path = [] // Foreach part make a check\n for (var k in arr) { // This is'nt really interesting\n if (arr[k] === '.') {\n continue\n }\n // This reduces the realpath\n if (arr[k] === '..') {\n /* But only if there more than 3 parts in the path-array.\n * The first three parts are for the uri */\n if (path.length > 3) {\n path.pop()\n }\n } else {\n // This adds parts to the realpath\n // But only if the part is not empty or the uri\n // (the first three parts ar needed) was not\n // saved\n if ((path.length < 2) || (arr[k] !== '')) {\n path.push(arr[k])\n }\n }\n }\n\n // Returns the absloute path as a string\n return path.join('/')\n}\n"]} \ No newline at end of file