Socket
Socket
Sign inDemoInstall

bones

Package Overview
Dependencies
127
Maintainers
8
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.24 to 1.3.25

2

package.json
{
"name": "bones",
"description": "Framework for using backbone.js on the client and server.",
"version": "1.3.24",
"version": "1.3.25",

@@ -6,0 +6,0 @@ "author": {

@@ -82,5 +82,5 @@ var env = process.env.NODE_ENV || 'development';

if (env === 'development') {
res.end(JSON.stringify(err));
res.end('HEAD' == req.method ? null : JSON.stringify(err));
} else {
res.end(JSON.stringify({ message: err.message }));
res.end('HEAD' == req.method ? null : JSON.stringify({ message: err.message }));
}

@@ -90,5 +90,5 @@ } else {

if (env === 'development') {
res.end(err.stack);
res.end('HEAD' == req.method ? null : err.stack);
} else {
res.end(err.message);
res.end('HEAD' == req.method ? null : err.message);
}

@@ -95,0 +95,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc