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

a-toolbox

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

a-toolbox - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

8

index.js
/* global Blob File FormData $ */
var crypto = require('crypto')
// var util = require('util')

@@ -286,2 +287,3 @@ var tools = {

inherits: function (destination, source) {
// util.inherits(destination, source)
Object.getOwnPropertyNames(source).forEach((property) => {

@@ -458,2 +460,8 @@ destination[property] = source[property]

return str.substr(0, 1).toUpperCase() + str.substr(1).toLowerCase()
},
prependMissing: function (prefix, str) {
if (str.indexOf(prefix) === 0) {
return str
}
return prefix + str
}

@@ -460,0 +468,0 @@ },

2

package.json
{
"name": "a-toolbox",
"version": "0.1.7",
"version": "0.1.8",
"description": "javascript lightweight basic tools",

@@ -5,0 +5,0 @@ "main": "index.js",

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