🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@bedrock-ui/utils

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bedrock-ui/utils - npm Package Compare versions

Comparing version

to
0.3.4

2

lib/cjs/utils/range/range.js

@@ -6,3 +6,3 @@ "use strict";

const array = [];
for (let i = start; i < end; i = i + step) {
for (let i = start; step > 0 ? i < end : i > end; i = i + step) {
array.push(i);

@@ -9,0 +9,0 @@ }

export function range(start, end, step = 1) {
const array = [];
for (let i = start; i < end; i = i + step) {
for (let i = start; step > 0 ? i < end : i > end; i = i + step) {
array.push(i);

@@ -5,0 +5,0 @@ }

{
"name": "@bedrock-ui/utils",
"version": "0.3.3",
"version": "0.3.4",
"description": "Bedrock UI Utils",

@@ -5,0 +5,0 @@ "author": "Matthew Wolfe",