Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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)