🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
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

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
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

util.format

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