Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 862 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 862 Bytes

Stringcheck

Stringcheck is a small module to check strings against common Regexpatterns (like email address, numbers, etc). Stringcheck returns either the input if the input correctly formated or false. It provides the following methods:

  • date
  • url
  • username
  • password
  • email
  • ipv4
  • integer
  • positiveInteger
  • negativeInteger
  • positiveOrNegativeNumber
  • positiveNumber
  • negativeNumber
  • phoneNumber
  • hex
  • newLine

Installation

npm install stringcheck --save

Usage

let stringcheck = require('stringcheck');

let response = stringcheck.date('31.12.2016');

if(response !== null) { // The date is correctly formated. }

Tests

npm test

Release History

  • 0.1.0 Initial release

Sources

Thanks to lukehass for the Regex expressions.