mirror of
https://github.com/rajnandan1/kener.git
synced 2026-05-04 17:50:21 -05:00
8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
const IsValidURL = function (url) {
|
|
return /^(http|https):\/\/[^ "]+$/.test(url);
|
|
};
|
|
const IsValidHTTPMethod = function (method) {
|
|
return /^(GET|POST|PUT|DELETE|HEAD|OPTIONS|PATCH)$/.test(method);
|
|
}
|
|
export { IsValidURL, IsValidHTTPMethod };
|