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

ansi-colors-nestable

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ansi-colors-nestable

Enables nested coloring of texts

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ansi-colors-nestable NPM MIT License Build Status Build Status Coverage Status

Enables nested coloring of texts using ansi-colors.

Install

$ npm install ansi-colors-nestable --save-dev

Usage

const nestableColors = require('ansi-colors-nestable');

const ansiColors = require('ansi-colors');

const blue = nestableColors('blue');
const red = nestableColors(ansi.red);

blue('This package ', red('nested'), ' coloring of texts');

API

nestableColors(color) : function

Returns a function which accepts multiple argument texts and colors each of them with color. If an argument text is already colored, that color is given precedence. As a result, this function make coloring nestable.

This function uses the package ansi-colors inside for supporting Node.js >= v0.10. So color names need to be supported by ansi-colors.

Parameters:
ParameterTypeDescription
colorstring or functioncolor name or coloring function
Returns:

A coloring function which can colorize multiple argument texts.

Type: function

The API of this returned function is as follows:

  • color**(...texts): string**

    Parameters:

    ParameterTypeDescription
    textsstring(s)texts to be colored.

    Returned:

    A colored and concatenated text

    Type: string

nestableColors.noColor(...texts) : string

This function has the same API with a returned function from nestableColors and simply returned a concatenated text of argument strings without coloring.

Parameters:
ParameterTypeDescription
textsstring(s)texts to be colored.
Returned:

A concatenated text without coloring.

Type: string

License

Copyright (C) 2017 Takayuki Sato

This program is free software under MIT License. See the file LICENSE in this distribution for more details.

Keywords

FAQs

Package last updated on 15 Dec 2017

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