ember-material-icons
Version:
Google Material icons for your ember-cli app
12 lines (10 loc) • 317 B
JavaScript
/*!
* is-git-url <https://github.com/jonschlinkert/is-git-url>
*
* Copyright (c) 2014-2015, Jon Schlinkert.
* Licensed under the MIT License.
*/
module.exports = function isGitUrl(str) {
var re = /(?:git|ssh|https?|git@[\w\.]+):(?:\/\/)?[\w\.@:\/~_-]+\.git(?:\/?|\#[\d\w\.\-_]+?)$/;
return re.test(str);
};