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

keystore-idb

Package Overview
Dependencies
Maintainers
4
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keystore-idb - npm Package Compare versions

Comparing version 0.14.1 to 0.14.2

3

package.json
{
"name": "keystore-idb",
"version": "0.14.1",
"version": "0.14.2",
"description": "In-browser key management with IndexedDB and the Web Crypto API",

@@ -27,2 +27,3 @@ "keywords": [],

"test:prod": "npm run lint && npm run test -- --no-cache",
"do-publish": "yarn build && cp package.json LICENSE README.md dist/ && cd dist && npm publish",
"precommit": "lint-staged"

@@ -29,0 +30,0 @@ },

@@ -40,2 +40,3 @@ "use strict";

var types_1 = require("./types");
var buffer_1 = require("buffer");
function arrBufToStr(buf, charSize) {

@@ -50,3 +51,3 @@ var arr = charSize === 8 ? new Uint8Array(buf) : new Uint16Array(buf);

var str = arrBufToStr(buf, 8);
return Buffer.from(str, 'binary').toString('base64');
return buffer_1.Buffer.from(str, 'binary').toString('base64');
}

@@ -63,3 +64,3 @@ exports.arrBufToBase64 = arrBufToBase64;

function base64ToArrBuf(base64) {
var str = Buffer.from(base64, 'base64').toString('binary');
var str = buffer_1.Buffer.from(base64, 'base64').toString('binary');
return strToArrBuf(str, 8);

@@ -66,0 +67,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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