New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-kitchen-sink-helpers

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-kitchen-sink-helpers - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

4

CHANGELOG.md
# master
# 0.3.1
* Fix Unicode handling for `hashStrings` function
# 0.3.0

@@ -4,0 +8,0 @@

2

index.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc