Socket
Socket
Sign inDemoInstall

iconv

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iconv - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

2

package.json
{
"name": "iconv",
"version": "3.0.0",
"version": "3.0.1",
"description": "Text recoding in JavaScript for fun and profit!",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/bnoordhuis/node-iconv",

@@ -95,3 +95,3 @@ # node-iconv

var buffer2 = iconv.convert(Buffer.from('Hello, world!'));
assert.equals(buffer.inspect(), buffer2.inspect());
assert.equal(buffer.inspect(), buffer2.inspect());
// do something useful with the buffers

@@ -98,0 +98,0 @@

@@ -76,3 +76,3 @@ /*

stream.on('data', function(s) {
assert.equal(s, '+AOc-x+AOc-');
assert.equal(s.toString(), '+AOc-x+AOc-');
ok = true;

@@ -91,3 +91,3 @@ });

assert.equal(num_end_events, 0);
assert.equal(s, 'test');
assert.equal(s.toString(), 'test');
num_data_events += 1;

@@ -94,0 +94,0 @@ });

Sorry, the diff of this file is not supported yet

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