Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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 0.3.3 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",

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