require("path").join
ইউআরএলগুলি একত্রিত করতে এটি কী নিরাপদ , উদাহরণস্বরূপ:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
যদি তা না হয় তবে আপনি কীভাবে আইএফএস-এর পূর্ণ কোড না লিখে এটি করার পরামর্শ দিবেন?
path.posix.join('/one/two/three', 'four') // '/one/two/three/four
, path.posix.join('/one/two/three/', 'four') // '/one/two/three/four
,path.posix.join('/one/two/three/', '/four') // '/one/two/three/four
path.posix.join('http://localhost:9887/one/two/three/', '/four')
একটি থেকে মুক্তি পেয়ে যায়http://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
এবং আপনি পারে না String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
যদি আপনি বারবার রেগুলার এক্সপ্রেশন টাইপ করতে চাই না। stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')