New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@teamcoder/regexvalidator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teamcoder/regexvalidator

This module is small but easy to use. The purpose of this module is to check if a string can be validated via regular expressions.

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

RegEx Validator

This module is small but easy to use. The purpose of this module is to check if a string can be validated via regular expressions.

Validation processes

The code only use regular expressions.

Code sample

This following code is actually how I tested that all methods correctly functioned as intended, is also provided in this module.

import { subStringIsValid } from '@teamcoder/regexvalidator';

console.log( "Testing Condition 1 Passed = " + regExIsValid( "Hallo world"  , "^Hallo" ) );
console.log( "Testing Condition 2 Passed = " + !regExIsValid( "Hallo world" , "^world" ) );

The results will look as follows

Testing Condition 1 Passed = true
Testing Condition 2 Passed = true

Function Parameters

Parameters Passed

@param  { String  } source        The source string to be checked
@param  { String  } expression    The regular expression to use

Parameters Returned

@return { Boolean }               Validation passed or failed

Notes Before You Start

Very important to remember to always include the following in your main project package.json file:

"type": "module"

Without this entry in the package file you will get the following error if you try to run your project

(node:15500) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(Use 'node --trace-warnings ...' to show where the warning was created)
C:\Users\ ... \regexvalidator\regexvalidator.js:1
import { regExIsValid } from '@teamcoder/regexvalidator';

Version History

VersionDateRemark
1.0.006 September 2022Official first release
1.0.106 September 2022Correcting documentation
1.0.209 September 2022Fixed package.json so that npm can install on any os
1.0.310 September 2022Fixed code to be proper npm package
1.0.411 September 2022Removed Default from export function in regexvalidator.js file

How To Install

Run the following command in a terminal or command prompt in the folder you want to install the module to.

npm i @teamcoder/regexvalidator

Operating Systems Tested On

Windows, Linux and RaspberryPi

License Information

RegExValidator © 2022 by Adriaan J. van Rensburg (CreepyCoderMC) is licensed under CC BY-NC-ND 4.0.

To view a online copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/

Keywords

value

FAQs

Package last updated on 11 Sep 2022

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