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

machinepack-util

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

machinepack-util - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

6

machines/inspect.js

@@ -39,7 +39,9 @@ module.exports = {

var util = require('util');
var isError = require('lodash.iserror');
var isObject = require('lodash.isobject');
if (util.isError(inputs.value)) {
if (isError(inputs.value)) {
return exits.success(util.inspect(inputs.value.stack));
}
if (util.isObject(inputs.value)) {
if (isObject(inputs.value)) {
return exits.success(util.inspect(inputs.value, {depth: null}));

@@ -46,0 +48,0 @@ }

{
"name": "machinepack-util",
"version": "6.0.0",
"version": "6.0.1",
"description": "Miscellaneous utilities for everyday tasks with arrays, dictionaries, strings, etc.",

@@ -23,2 +23,4 @@ "scripts": {

"lodash": "3.10.1",
"lodash.iserror": "3.1.1",
"lodash.isobject": "3.0.2",
"machine": "~12.1.0",

@@ -25,0 +27,0 @@ "object-hash": "0.5.0"

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