{"id":1683,"date":"2018-12-13T08:48:31","date_gmt":"2018-12-13T07:48:31","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=1683"},"modified":"2022-07-25T08:35:44","modified_gmt":"2022-07-25T07:35:44","slug":"javascript-pathjoin","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/javascript-pathjoin\/","title":{"rendered":"Javascript PathJoin"},"content":{"rendered":"\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">const pathJoin = (...args: any[]): string => {\n    const r = Array.from(args)\n        .map(s => String(s))\n        .map((s, i, a) => {\n            if (i !== 0 &amp;&amp; s.charAt(0) === \"\/\") { return s.substr(1); }\n            if (i !== a.length - 1 &amp;&amp; s.charAt(s.length - 1) === \"\/\") { return s.slice(0, -1); }\n            return s;\n        });\n    return r.join(\"\/\");\n};<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5,4],"tags":[],"class_list":["post-1683","post","type-post","status-publish","format-standard","hentry","category-javascript","category-programming"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=1683"}],"version-history":[{"count":3,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1683\/revisions"}],"predecessor-version":[{"id":2191,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1683\/revisions\/2191"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=1683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=1683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=1683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}