Socket
Socket
Sign inDemoInstall

@rescript/std

Package Overview
Dependencies
0
Maintainers
6
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 11.0.0-alpha.4 to 11.0.0-alpha.5

26

lib/es6/belt_internalBuckets.js

@@ -7,2 +7,15 @@

function copyBucket(c) {
if (c === undefined) {
return c;
}
var head = {
key: c.key,
value: c.value,
next: undefined
};
copyAuxCont(c.next, head);
return head;
}
function copyAuxCont(_c, _prec) {

@@ -27,15 +40,2 @@ while(true) {

function copyBucket(c) {
if (c === undefined) {
return c;
}
var head = {
key: c.key,
value: c.value,
next: undefined
};
copyAuxCont(c.next, head);
return head;
}
function copyBuckets(buckets) {

@@ -42,0 +42,0 @@ var len = buckets.length;

@@ -7,2 +7,15 @@ 'use strict';

function copyBucket(c) {
if (c === undefined) {
return c;
}
var head = {
key: c.key,
value: c.value,
next: undefined
};
copyAuxCont(c.next, head);
return head;
}
function copyAuxCont(_c, _prec) {

@@ -27,15 +40,2 @@ while(true) {

function copyBucket(c) {
if (c === undefined) {
return c;
}
var head = {
key: c.key,
value: c.value,
next: undefined
};
copyAuxCont(c.next, head);
return head;
}
function copyBuckets(buckets) {

@@ -42,0 +42,0 @@ var len = buckets.length;

{
"name": "@rescript/std",
"version": "11.0.0-alpha.4",
"version": "11.0.0-alpha.5",
"keywords": [

@@ -5,0 +5,0 @@ "rescript",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc