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

int-format

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

int-format

[![Codecov Coverage](https://img.shields.io/codecov/c/github/ssypachev/int-format/master.svg?style=flat-square)](https://codecov.io/gh/ssypachev/int-format/)

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

Codecov Coverage

int-format

Helper library for formatting integer numbers

let str = new IntFormat("# # #").format("123");
//1 2 3

Installation

npm install int-format

Constructor

IntFormat({
	format,
	padWith,
	sigil,
	anchor
})

or

IntFormat(format)

Options

format - the format

padWith - which symbol to use to pad empty placeholders, default empty string

sigil - symbol to substitute, default #

anchor - symbol to escape sigil, default is backslash

Methods

setFormat

setSigil

setAnchor

setPad

format - takes string or number as argument

Examples

let str = new IntFormat({ padWith: '?', format: "\\## \\\\# #" }).format(12);
//#1 \\2 ?
let str = new IntFormat('+# (###) ###-##-##').format('78037764302');
//+7 (803) 776-43-02

Testing

npm run test npm run cover

Architecture

IntFormat is a simple state machine

Keywords

FAQs

Package last updated on 22 Mar 2019

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