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

logoots-utils

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logoots-utils - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

package.json
{
"name": "logoots-utils",
"version": "0.0.4",
"version": "0.0.5",
"description": "Helper providing several function manipulating strings or arrays",

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

@@ -65,3 +65,3 @@ module.exports = {

var i;
console.log('On tente de copier : ', arr);
for(i=0; i<arr.length; i++) {

@@ -71,5 +71,8 @@ if(typeof arr[i] === "number" || typeof arr[i] === "string") {

}
else if(typeof arr[i] === "object") {
else if(arr[i].copy !== undefined) {
copy.push(arr[i].copy());
}
else {
copy.push(arr[i]);
}
}

@@ -76,0 +79,0 @@ return copy;

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