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 - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+7
-4
package.json
{
"type": "module",
"name": "@teamcoder/regexvalidator",
"version": "1.0.0",
"version": "1.0.1",
"description": "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.",

@@ -22,3 +23,3 @@ "main": "regexvalidator.js",

"homepage": "https://github.com/CreepyCoderMC",
"url": "https://github.com/CreepyCoderMC/mqtttopicvalidator/issues",
"url": "https://github.com/CreepyCoderMC/regexvalidator/issues",
"email": "creepycodermc@gmail.com",

@@ -33,3 +34,3 @@

"type": "git",
"url": "https://github.com/CreepyCoderMC/mqtttopicvalidator"
"url": "https://github.com/CreepyCoderMC/regexvalidator"
},

@@ -48,4 +49,6 @@

"windows",
"linux"
"linux",
"raspberrypi"
]
}

@@ -8,3 +8,3 @@ # RegEx Validator

```
import subStringIsValid from './node_modules/@creepycoder/regexvalidator/regexvalidator.js';
import subStringIsValid from './node_modules/@teamcoder/regexvalidator/regexvalidator.js';

@@ -23,3 +23,3 @@ console.log( "Testing Condition 1 Passed = " + regExIsValid( "Hallo world" , "^Hallo" ) );

@param { String } expression The regular expression to use
@return { Boolean } The string passed/failed validation
@return { Boolean } Validation passed or failed
```

@@ -30,2 +30,3 @@ ## Version History

| 1.0.0 | 06 September 2022 | Official first release |
| 1.0.1 | 06 September 2022 | Correcting documentation |
## How To Install

@@ -35,5 +36,5 @@ Run the following command in a terminal or command prompt in the folder you want to install the module to.

## Operating Systems Tested On
>Windows and Linux
>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/](http://creativecommons.org/licenses/by-nc-nd/4.0/)

@@ -231,2 +231,3 @@ /*

* 1.0.0 06 September 2022 Official first release
* 1.0.1 06 September 2022 Correcting documentation
*/

@@ -237,3 +238,3 @@

* @param { String } expression The regular expression to use
* @return { Boolean } The string passed/failed validation
* @return { Boolean } Validation passed or failed
*/

@@ -240,0 +241,0 @@