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

avow

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avow - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

6

index.js

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

function presumify(fn) {
function avowify(fn) {
return function (...args) {

@@ -17,5 +17,5 @@ try { fn(...args) }

// e.g. avow.equal(...)
get: (target, method) => presumify(target[method]),
get: (target, method) => avowify(target[method]),
// e.g. avow(...)
apply: (target, thisArg, args) => presumify(target).apply(thisArg, args)
apply: (target, thisArg, args) => avowify(target).apply(thisArg, args)
}

@@ -22,0 +22,0 @@

{
"name": "avow",
"version": "3.0.0",
"version": "3.0.1",
"description": "Proxy for assert that accepts custom Errors",
"engines": {
"node": ">=6.4.0"
},
"main": "index.js",

@@ -27,2 +30,2 @@ "scripts": {

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