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

awesome64

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awesome64 - npm Package Compare versions

Comparing version 1.0.0-alpha4 to 1.0.0-alpha5

6

index.js

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

const carry = ((selfSign & otherSign) |
((~sumSign) & (selfSign ^ otherSign))) & 1;
(~sumSign & (selfSign ^ otherSign))) & 1;

@@ -71,4 +71,4 @@ this.hi = (((selfHi + otherHi) | 0) + carry) | 0;

const selfPositive = (~selfSign) & (~((~selfLo) & (selfLo - 1)) >> 31);
const otherPositive = (~otherSign) & (~((~otherLo) & (otherLo - 1)) >> 31);
const selfPositive = ~selfSign & (~(~selfLo & (selfLo - 1)) >> 31);
const otherPositive = ~otherSign & (~(~otherLo & (otherLo - 1)) >> 31);

@@ -75,0 +75,0 @@ // If both negative

{
"name": "awesome64",
"version": "1.0.0-alpha4",
"version": "1.0.0-alpha5",
"description": "Awesome Int64 num implementation",

@@ -5,0 +5,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