Socket
Socket
Sign inDemoInstall

@rescript/std

Package Overview
Dependencies
0
Maintainers
4
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 10.0.1 to 10.1.0-alpha.1

lib/es6/js_map.js

26

lib/es6/belt_internalBuckets.js

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

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) {

@@ -40,2 +27,15 @@ 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;

@@ -6,14 +6,2 @@

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

@@ -37,2 +25,14 @@ while(true) {

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

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

@@ -66,2 +66,10 @@

var $$Set;
var $$WeakSet;
var $$Map;
var $$WeakMap;
export {

@@ -99,3 +107,7 @@ Fn ,

Console ,
$$Set ,
$$WeakSet ,
$$Map ,
$$WeakMap ,
}
/* No side effect */

@@ -7,15 +7,2 @@ '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) {

@@ -40,2 +27,15 @@ 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;

@@ -6,14 +6,2 @@ 'use strict';

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

@@ -37,2 +25,14 @@ while(true) {

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

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

@@ -66,2 +66,10 @@ 'use strict';

var $$Set;
var $$WeakSet;
var $$Map;
var $$WeakMap;
exports.Fn = Fn;

@@ -98,2 +106,6 @@ exports.MapperRt = MapperRt;

exports.Console = Console;
exports.$$Set = $$Set;
exports.$$WeakSet = $$WeakSet;
exports.$$Map = $$Map;
exports.$$WeakMap = $$WeakMap;
/* No side effect */
{
"name": "@rescript/std",
"version": "10.0.1",
"version": "10.1.0-alpha.1",
"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