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

@dmail/action

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dmail/action - npm Package Compare versions

Comparing version 2.3.1 to 2.4.0

4

dist/src/action.js

@@ -13,2 +13,6 @@ "use strict";

var isThenable = exports.isThenable = function isThenable(value) {
if (value === null) {
return false;
}
if (_typeof(value) === "object" || typeof value === "function") {

@@ -15,0 +19,0 @@ return typeof value.then === "function";

2

package.json
{
"name": "@dmail/action",
"version": "2.3.1",
"version": "2.4.0",
"license": "MIT",

@@ -5,0 +5,0 @@ "repository": {

@@ -8,2 +8,5 @@ // more or less equivalent to

export const isThenable = (value) => {
if (value === null) {
return false
}
if (typeof value === "object" || typeof value === "function") {

@@ -10,0 +13,0 @@ return typeof value.then === "function"

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