🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

input-core

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

input-core

Core abilities of masked-input. Usefull to create custom input processors

2.1.0
latest
Source
npm
Version published
Weekly downloads
12K
6.22%
Maintainers
1
Weekly downloads
 
Created
Source

input-core

This project would help you if:

  • You don't need to create an input for user, but only formatting to show data as a plain text
  • You want to create your own compnent which will work with inputs

Step-by-step guide:

  • Install it

    npm install --save input-core
    

    or

    yarn add input-core
    
  • import it:

    import { createInput } from 'input-core';
    
  • Create an object (for example, if we want to format phone):

export default function formatPhone(value, mask) {
  const input = createInput({
    value,
    mask,
  });

  return input.getVisibleValue();
}
  • Use it wherever you need ;)
const phone = '9651112222';
...
formatPhone(phone, '+7 (000) 000 00-00'); // returns +7 (965) 111 22-22

License

MIT

Keywords

masked-input

FAQs

Package last updated on 03 Oct 2020

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