Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sultaniman/is-md5
JavaScript utility to check if string is md5 encrypted
https://github.com/sultaniman/is-md5
Last synced: about 2 months ago
JSON representation
JavaScript utility to check if string is md5 encrypted
- Host: GitHub
- URL: https://github.com/sultaniman/is-md5
- Owner: sultaniman
- License: mit
- Created: 2015-10-27T06:00:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-28T16:43:56.000Z (about 9 years ago)
- Last Synced: 2024-05-21T13:03:55.394Z (9 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nodejs - is-md5 - JavaScript utility to check if string is md5 encrypted. (Repository / Check/Detect)
README
# is-md5 [![Build Status](https://travis-ci.org/imanhodjaev/is-md5.svg?branch=master)](https://travis-ci.org/imanhodjaev/is-md5)
> Check if string is a valid md5 hash
## Install
```
$ npm install --save is-md5
```## Usage
```js
const isMd5 = require('is-md5');console.log(isMd5('c52aa11424524dcc59d3502354257dd6'));
console.log(isMd5('nooooo'));
```## License
MIT © [Sultan Imanhodjaev](http://github.com/imanhodjaev)