UNPKG

stringzy

Version:

A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.

13 lines (12 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isURL = isURL; function isURL(str) { try { new URL(str); return true; } catch (_a) { return false; } }