zce-md5
v0.0.0-alpha.1
Published
zce demo node module
Downloads
2
Readme
md5
zce demo node module structure
MD5 encryption of the input string
Installation
$ yarn add zce-md5
# or npm
$ npm install zce-md5
Usage
const md5 = require('zce-md5')
const result = md5('zce')
console.log(result)
// => 'f1963aa09931b5dade50485239cc40bc'
API
md5(input[, options])
return MD5 string of input
targets
- Type:
string
- Details: input string
options
uppercase
- Type:
boolean
- Details: return uppercase?
- Default:
false
Contributing
- Fork it on GitHub!
- Clone the fork to your own machine.
- Checkout your feature branch:
git checkout -b my-awesome-feature
- Commit your changes to your own branch:
git commit -am 'Add some feature'
- Push your work back up to your fork:
git push -u origin my-awesome-feature
- Submit a Pull Request so that we can review your changes.
NOTE: Be sure to merge the latest from "upstream" before making a pull request!