How to use the supports-hyperlinks.stderr function in supports-hyperlinks

To help you get started, we’ve selected a few supports-hyperlinks examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sindresorhus / terminal-link / index.js View on Github external
if (options.fallback === false) {
			return text;
		}

		return typeof options.fallback === 'function' ? options.fallback(text, url) : `${text} (\u200B${url}\u200B)`;
	}

	return ansiEscapes.link(text, url);
};

module.exports = (text, url, options = {}) => terminalLink(text, url, options);

module.exports.stderr = (text, url, options = {}) => terminalLink(text, url, {target: 'stderr', ...options});

module.exports.isSupported = supportsHyperlinks.stdout;
module.exports.stderr.isSupported = supportsHyperlinks.stderr;

supports-hyperlinks

Detect if your terminal emulator supports hyperlinks

MIT
Latest version published 1 year ago

Package Health Score

71 / 100
Full package analysis