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

custom-util-format

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom-util-format

Customizable version of node's util.format() function

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
179
decreased by-26.03%
Maintainers
1
Weekly downloads
 
Created
Source

custom-util-format

A customizable version of the util.format() function from the node.js stdlib.

Create a customized format() function by passing an object of custom flags. Each key should be a single character flag, and each value a function that formats the argument for that flag. These flags will be merged with the default s, d, and j flags. Pass any falsey value to override them.

usage

const format = require('custom-util-format')({
  p: x => `${Math.round(x * 100)}%`
})

console.log(format('msg: %p complete', 0.5));
// => 'msg: 50% complete'

Keywords

FAQs

Package last updated on 02 May 2016

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