Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@openinf/util-text

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openinf/util-text

Essential cross-platform terminal-friendly text utilities

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@openinf/util-text

Essential cross-platform terminal-friendly text utilities


view on npm License: MIT


The high-level goal of @openinf/util-text is to serve as a Node.js package containing essential cross-platform text utilities that degrade gracefully when used in terminals lacking feature support. As is the case with any software project in continuous development, omissions and errors may exist, for which contributions are welcome.




Installation

@openinf/util-text runs on Node.js and is available via npm.

npm install @openinf/util-text

Usage

To get started using the text utils provided by @openinf/util-text, all that needs to be done is either import/require (depending on the module format) the default export of the module or destructure the individual named helper functions exported.

import { blueify, ellipsify } from '@openinf/util-text';

console.log(blueify(ellipsify('Deserializing database tables')));



Functions

blueify(text)string

Returns the supplied string as blue colored if ANSI escapes are supported.

curlyQuote(text)string

Returns the supplied string as curly quoted if Unicode is supported.

ellipsify(text)string

Returns the supplied string as ellipsified if Unicode is supported.

italicize(text)string

Returns the supplied string as italicized if ANSI escapes are supported.

mdCodeSpans2html(text)string

Processes the supplied string by transforming any Markdown backtick code spans (begining and ending with a single backtack) into HTML code elements.

redden(text)string

Returns the supplied string as red colored if ANSI escapes are supported.

underline(text)string

Returns the supplied string as underlined if ANSI escapes are supported.

yellow(text)string

Returns the supplied string as yellow colored if ANSI escapes are supported.

UnicodeEscapes : enum

Kind: global enum
Properties

NameTypeDefault
infoSymbolstring"ⓘ"
midlineEllipsisstring"⋯"
ellipsisstring"…"
errorSymbolstring"ⓧ"
leftDoubleQuotesstring"“"
rightDoubleQuotesstring"”"
warningSymbolstring"⚠"

blueify(text) ⇒ string

Returns the supplied string as blue colored if ANSI escapes are supported.

Kind: global function

ParamType
textstring

curlyQuote(text) ⇒ string

Returns the supplied string as curly quoted if Unicode is supported.

Kind: global function

ParamType
textstring

ellipsify(text) ⇒ string

Returns the supplied string as ellipsified if Unicode is supported.

Kind: global function

ParamType
textstring

italicize(text) ⇒ string

Returns the supplied string as italicized if ANSI escapes are supported.

Kind: global function

ParamType
textstring

mdCodeSpans2html(text) ⇒ string

Processes the supplied string by transforming any Markdown backtick code spans (begining and ending with a single backtack) into HTML code elements.

Kind: global function

ParamType
textstring

redden(text) ⇒ string

Returns the supplied string as red colored if ANSI escapes are supported.

Kind: global function

ParamType
textstring

underline(text) ⇒ string

Returns the supplied string as underlined if ANSI escapes are supported.

Kind: global function

ParamType
textstring

yellow(text) ⇒ string

Returns the supplied string as yellow colored if ANSI escapes are supported.

Kind: global function

ParamType
textstring



© The OpenINF Authors

FAQs

Package last updated on 07 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc