All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.helpers.parseProtocol.js Maven / Gradle / Ivy

There is a newer version: 1.7.9
Show newest version
'use strict';

export default function parseProtocol(url) {
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
  return match && match[1] || '';
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy