function isRelativePath()

in styles/docfx.js [1081:1086]


    function isRelativePath(href) {
      if (href === undefined || href === '' || href[0] === '/') {
        return false;
      }
      return !isAbsolutePath(href);
    }