Answers for "get base url from string javascript"

6

js get base url

var url = window.location.origin;
Posted by: Guest on August-26-2020
-1

javascript base64url decode

var decode = function(input) {
        // Replace non-url compatible chars with base64 standard chars
        input = input
            .replace(/-/g, '+')
            .replace(/_/g, '/');

        // Pad out with standard base64 required padding characters
        var pad = input.length % 4;
        if(pad) {
          if(pad === 1) {
            throw new Error('InvalidLengthError: Input base64url string is the wrong length to determine padding');
          }
          input += new Array(5-pad).join('=');
        }

        return input;
    }
Posted by: Guest on November-14-2020
0

js get url static without path from strin

var pathArray = "https://somedomain.com".split( '/' );
var protocol = pathArray[0];
var host = pathArray[2];
var url = protocol + '//' + host;
Posted by: Guest on February-06-2021

Code answers related to "get base url from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language