Socket
Socket
Sign inDemoInstall

picomask

Package Overview
Dependencies
0
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    picomask

Very small integer text mask for basic applications.


Version published
Weekly downloads
679
decreased by-34.77%
Maintainers
2
Install size
13.2 kB
Created
Weekly downloads
 

Readme

Source

picomask

npm version test coverage npm bundle size

Very small integer text mask for basic applications.

Usage

import { picomask, transform } from 'picomask'

const mask = picomask('09072021', 'mm/dd/yyyy')

// => { value: '09/07/2021', m: '09', d: '07', y: '2021' }

const anotherMask = transform(mask, 'yyyy-mm-dd')

// => { value: '2021-09-07', m: '09', d: '07', y: '2021' }

Other Examples

picomask('07092021', 'dd-mm-yyyy') // => { value: '07-09-2021', ... }
picomask('20210907', 'yyyy-mm-dd') // => { value: '2021-09-07', ... }
picomask('1231231234', '(nnn) nnn-nnnn') // => { value: '(123) 123-1234', ... }
picomask('0624', 'mm/yy') // => { value: '06/24', ... }
picomask('4242424242424242', 'cccc cccc cccc cccc') // => { value: '4242 4242 4242 4242', ... }

License

MIT License © Truework

Keywords

FAQs

Last updated on 10 Nov 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc