Socket
Socket
Sign inDemoInstall

loosely

Package Overview
Dependencies
0
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    loosely

Text loosely based on input


Version published
Weekly downloads
311
decreased by-5.47%
Maintainers
1
Install size
59.2 kB
Created
Weekly downloads
 

Readme

Source

Build Status

Loosely🌱

Smart input masks for regexes

loosely-watch

Demo

Try it out! (powered by codesandbox.io)

Why?

You are probably already using regular expressions to validate user input. Leverage those existing patterns to help users format their input instead of showing them error messages.

How?

Loosely parses a regex into a graph. Each node in the graph has a set of characters that it accepts. Each time the user types a character, the graph is searched to see if the text represents a path through the graph. If a node only accepts one character, the search is allowed to insert that character into the input. This allows required parts of the mask to be inserted automatically while the user is typing. If no nodes accept a character, the search is allowed to remove it from the input. This allows a user's personal formatting preferences to be gracefully ignored. The result is a robust input experience that adapts to the data as it changes.

Install

npm install --save loosely

Use

Construct a Mask instance from a regular expression.

const { Mask } = require('loosely');

const mask = new Mask(/\d \(\d{3}\) \d{3}-\d{4}/);

DOM Watcher

Filter input as the user is typing into a DOM input.

const input = document.querySelector('#phone');

mask.watch(input);

Low Level API

filter(text) returns a string that at least partially matches the mask.

validate(text) determines if the text completely matches the mask.

sample() returns a random string that matches the mask.

const text = mask.filter('1-800-555-1234');
// 1 (800) 555-1234

mask.validate(text);
// true

mask.sample()
// 8 (693) 906-1454

Reverse Mask

Filter a regular expression from right to left.

const { ReverseMask } = require('loosely');

const mask = new ReverseMask(/(\d{1,3},)*\d{1,3}/);

const text = mask.filter('12345');
// 12,345

TODO

Assertions

Assertions are currently treated as normal groups. Any overlapping expressions before a look-behind or after a look-ahead will produce invalid results. Negative assertions are also treated as normal groups without negation, so they will always produce invalid results. Please consider contributing any ideas or code you have for this feature.

Keywords

FAQs

Last updated on 07 Nov 2019

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