Giter Site home page Giter Site logo

pmask's Introduction

pmask.js

A tiny JavaScript module that converts phone number by given pattern (mask)

Attributes

separators : Array
mask       : String 
x          : Char 
fill       : Boolean
separators are splitting digits

mask is a pattern, use any symbol that 
not included in separators to place a digit.

x is a symbol that will be placed instead of number if 
some of the digits is missing and fill parameter is set to true

Methods

Each attribute has its own setter and getter named with lowercase.

  // Reset all attributes to default state
  reset() : void
  
  // Get transformed given number
  get(number: String) : String

Usage

import pmask from './pmask'

or there is also pmask-node.js provided for Node.js

const pmask = require('./pmask-node');

const pm = new pmask();

pm.separators = ['-', '(', ')'];
pm.mask = 'x-(xxx)-xxx-xxxx';
pm.fill = false;

console.log(pm.get("1234")); //1-(234

Look inside test.js file to see more examples.

pmask's People

Contributors

nyuuuukie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.