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

bal-util

Package Overview
Dependencies
Maintainers
1
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bal-util - npm Package Compare versions

Comparing version 1.12.4 to 1.12.5

7

out/lib/flow.js

@@ -86,9 +86,2 @@ // Generated by CoffeeScript 1.3.3

},
clone: function(source) {
var target;
target = {};
args.unshift(target);
balUtilFlow.extend(target, source);
return target;
},
dereference: function(source) {

@@ -95,0 +88,0 @@ var target;

4

out/lib/types.js

@@ -59,6 +59,6 @@ // Generated by CoffeeScript 1.3.3

isNumber: function(value) {
return balUtilTypes.toString(value) === '[object Number]';
return typeof value === 'number' || balUtilTypes.toString(value) === '[object Number]';
},
isString: function(value) {
return balUtilTypes.toString(value) === '[object String]';
return typeof value === 'string' || balUtilTypes.toString(value) === '[object String]';
},

@@ -65,0 +65,0 @@ isBoolean: function(value) {

{
"name": "bal-util",
"version": "1.12.4",
"version": "1.12.5",
"description": "Common utility functions for Node.js used and maintained by Benjamin Lupton",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/balupton/bal-util",

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