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

aba-generate

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aba-generate - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

index.js

@@ -5,3 +5,3 @@ const moment = require('moment');

const toCents = number =>
const toCents = (number = 0) =>
new BigNumber(number)

@@ -12,5 +12,5 @@ .round(2)

const sum = totals =>
totals.reduce((p, v) => p.add(v), new BigNumber(0)).toFixed(2);
totals.reduce((p, v) => p.add(new BigNumber(v)), new BigNumber(0)).toFixed(2);
const difference = (credit, debit) =>
Math.abs(new BigNumber(credit).sub(debit).toFixed(2));
Math.abs(new BigNumber(credit).sub(new BigNumber(debit)).toFixed(2));

@@ -17,0 +17,0 @@ const PAYMENT_FORMAT = [

{
"name": "aba-generate",
"version": "1.0.0",
"version": "1.0.1",
"description": "ABA file generation",

@@ -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