1.0.2 • Published 2 years ago

sentence-validator v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

sentence-validator

sentence-validator

About

The motivation with this module is to provide a sentence validation on string which can help to verify if entered string is garbage value or not.

Getting Started

Install SuperTest as an npm module and save it to your package.json file as a development dependency:

npm i sentence-validator

Once installed it can now be referenced by simply calling require('sentence-validator');

Example

Here is an example.

const sentenceValidator =  require('sentence-validator')


console.log( sentenceValidator("How are you"))
//true

console.log( sentenceValidator("asf asdasdfk asdflkja"))  // garbage value
//false

License

ISC