![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ansi-colors-prioritized
Advanced tools
Enables prioritized and nestable coloring of texts using ansi-colors.
$ npm install ansi-colors-prioritized --save-dev
const prioritizedColor = require('ansi-color-prioritized');
const chaik = require('chalk');
const ansiColors = require('ansi-colors');
colorCandidate0 = ''; // null, empty or unsupported color name
colorCandidate1 = ansi.green;
colorCandidate2 = ansi.gray;
const color = prioritizedColor(colorCandidate0, colorCandidate1, colorCandidate2);
color('This package enables ', ansi.red('prioritized'), ' and ', ansi.magenta('nested'), ' coloring.');
// color is colorCandidate1 (ansi.green) in this case.
This function accepts multiple arguments each of which is either a coloring function or a color name, and chooses first available color among the arguments.
This function returns a coloring function, which is created by ansi-colors-nestable inside of this package, and accepts multiple argument texts and colors each of them with the chosen color. Therefore this returned function supports nested coloring.
This function uses the package ansi-colors inside for supporting Node.js >= v0.10. So color names need to be supported by ansi-colors.
Parameter | Type | Description |
---|---|---|
color | string | function |
A coloring function which can colorize multiple argument texts.
Type: function
Copyright (C) 2017 Takayuki Sato
This program is free software under MIT License. See the file LICENSE in this distribution for more details.
FAQs
Enables prioritized and nested coloring of texts
We found that ansi-colors-prioritized demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.