Code coverage report for lib/mapreduce/md5.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » lib/mapreduce/ » md5.js
1 2 3 4 5 6 7    1   1 143  
'use strict';
 
var crypto = require('crypto');
 
module.exports = function (string) {
  return crypto.createHash('md5').update(string).digest('hex');
};