broccoli-kitchen-sink-helpers
Advanced tools
Comparing version 0.3.0 to 0.3.1
# master | ||
# 0.3.1 | ||
* Fix Unicode handling for `hashStrings` function | ||
# 0.3.0 | ||
@@ -4,0 +8,0 @@ |
@@ -97,3 +97,3 @@ var fs = require('fs') | ||
var joinedStrings = strings.join('\x00') | ||
return crypto.createHash('md5').update(joinedStrings).digest('hex') | ||
return crypto.createHash('md5').update(new Buffer(joinedStrings, 'utf8')).digest('hex') | ||
} | ||
@@ -100,0 +100,0 @@ |
{ | ||
"name": "broccoli-kitchen-sink-helpers", | ||
"description": "Collection of helpers that need to be extracted into separate packages", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"author": "Jo Liss <joliss42@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
10707