平安校园
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

15 行
375 B

  1. 'use strict'
  2. /**
  3. * Creates a new URL by combining the specified URLs
  4. *
  5. * @param {string} baseURL The base URL
  6. * @param {string} relativeURL The relative URL
  7. * @returns {string} The combined URL
  8. */
  9. export default function combineURLs(baseURL, relativeURL) {
  10. return relativeURL
  11. ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '')
  12. : baseURL
  13. }