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

d2-utilizr

Package Overview
Dependencies
Maintainers
2
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d2-utilizr - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

2

package.json
{
"name": "d2-utilizr",
"version": "0.0.17",
"version": "0.0.18",
"description": "",

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

@@ -310,3 +310,3 @@ // TYPE

// arrayReplace
export function replace(array, index, removeCount, insert) {
export function arrayReplace(array, index, removeCount, insert) {
if (insert && insert.length) {

@@ -325,4 +325,4 @@ if (index < array.length) {

// arrayInsert (dependency: arrayReplace)
export function (array, index, items) {
return replace(array, index, 0, items);
export function arrayInsert(array, index, items) {
return arrayReplace(array, index, 0, items);
}

@@ -329,0 +329,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