Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hexer

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexer - npm Package Compare versions

Comparing version 1.4.4 to 1.4.5

test/colored.js

6

hex_transform.js
"use strict";
var extendInto = require('xtend/mutable');
var extend = require('xtend');
var util = require('util');

@@ -14,4 +14,3 @@ var Transform = require('readable-stream').Transform;

if (!options) options = {};
// istanbul ignore if
if (options.colored) extendInto(options, render.coloredOptions);
if (options.colored) options = extend(render.coloredOptions, options);
Transform.call(this, options);

@@ -32,3 +31,2 @@ var self = this;

self.groupSeparator = self.options.groupSeparator === undefined ? ' ' : self.options.groupSeparator;
// istanbul ignore next
self.headSep = self.options.headSep === undefined ? ': ' : self.options.headSep;

@@ -35,0 +33,0 @@ // istanbul ignore next

{
"name": "hexer",
"version": "1.4.4",
"version": "1.4.5",
"description": "Hex Dumper (streaming, sync, and cli)",

@@ -5,0 +5,0 @@ "keywords": [

@@ -23,3 +23,2 @@ 'use strict';

// istanbul ignore next
function renderColoredHuman(c) {

@@ -26,0 +25,0 @@ if (c > 0x1f && c < 0x7f) {

@@ -5,2 +5,3 @@ 'use strict';

require('./chunked');
require('./colored');
require('./spy');
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