@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
9 lines • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isAbsoluteUrl = isAbsoluteUrl;
function isAbsoluteUrl(url) {
// A regular expression to check if the URL starts with http:// or https://
var regex = /^(http|https):\/\/[^ "]+$/;
return regex.test(url);
}
//# sourceMappingURL=isAbsoluteUrl.js.map