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

vise

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vise - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

6

lib/index.js

@@ -83,3 +83,3 @@ 'use strict';

this.length = 0;
for (let i = 0, jl = this._chunks.length; i < jl; ++i) {
for (let i = 0; i < this._chunks.length; ++i) {
const chunk = this._chunks[i];

@@ -163,4 +163,4 @@ chunk.offset = this.length,

const offset = (j === start.chunk.index ? start.offset : 0);
for (let k = offset; k < chunk.length && i < length; ++k, ++i) {
let k = (j === start.chunk.index ? start.offset : 0);
for (; k < chunk.length && i < length; ++k, ++i) {
if (chunk.data[k] !== value[i]) {

@@ -167,0 +167,0 @@ return false;

{
"name": "vise",
"description": "Treat multiple buffers as one",
"version": "2.0.0",
"version": "2.0.1",
"repository": "git://github.com/hapijs/vise",

@@ -17,7 +17,7 @@ "main": "lib/index.js",

"dependencies": {
"hoek": "3.x.x"
"hoek": "4.x.x"
},
"devDependencies": {
"code": "2.x.x",
"lab": "7.x.x"
"lab": "10.x.x"
},

@@ -24,0 +24,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

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