Your IP : 216.73.216.30


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/slash/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/slash/index.js

'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, '/');
};