Initial commit
This commit is contained in:
11
node_modules/slash/index.js
generated
vendored
Normal file
11
node_modules/slash/index.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
module.exports = function (str) {
|
||||
var isExtendedLengthPath = /^\\\\\?\\/.test(str);
|
||||
var hasNonAscii = /[^\x00-\x80]+/.test(str);
|
||||
|
||||
if (isExtendedLengthPath || hasNonAscii) {
|
||||
return str;
|
||||
}
|
||||
|
||||
return str.replace(/\\/g, '/');
|
||||
};
|
||||
21
node_modules/slash/package.json
generated
vendored
Normal file
21
node_modules/slash/package.json
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "slash",
|
||||
"version": "1.0.0",
|
||||
"description": "Convert Windows backslash paths to slash paths",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "http://sindresorhus.com"
|
||||
},
|
||||
"repository": "sindresorhus/slash",
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user