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

@symbo.ls/scratch

Package Overview
Dependencies
Maintainers
0
Versions
280
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@symbo.ls/scratch - npm Package Compare versions

Comparing version

to
2.11.522

4

dist/cjs/utils/index.js

@@ -1037,5 +1037,5 @@ "use strict";

};
var generateSequencePosition = (sequenceProps, position) => {
var generateSequencePosition = (sequenceProps, position = 0) => {
const { type, base, ratio, subSequence } = sequenceProps;
const letterKey = numToLetterMap[position];
const letterKey = (void 0).call("isString", position) ? position : numToLetterMap[position];
if (!letterKey) {

@@ -1042,0 +1042,0 @@ console.warn(`Position ${position} is out of range in numToLetterMap`);

@@ -761,5 +761,5 @@ "use strict";

};
var generateSequencePosition = (sequenceProps, position) => {
var generateSequencePosition = (sequenceProps, position = 0) => {
const { type, base, ratio, subSequence } = sequenceProps;
const letterKey = numToLetterMap[position];
const letterKey = (void 0).call("isString", position) ? position : numToLetterMap[position];
if (!letterKey) {

@@ -766,0 +766,0 @@ console.warn(`Position ${position} is out of range in numToLetterMap`);

@@ -5,3 +5,3 @@ {

"author": "symbo.ls",
"version": "2.11.521",
"version": "2.11.522",
"files": [

@@ -34,3 +34,3 @@ "src",

},
"gitHead": "7f30a0846925a2f6db7899fde8bd96c0c87c1bb5"
"gitHead": "f0cf0f8e16c7cac278886a322e85cb8d8188ca24"
}

@@ -171,5 +171,5 @@ 'use strict'

export const generateSequencePosition = (sequenceProps, position) => {
export const generateSequencePosition = (sequenceProps, position = 0) => {
const { type, base, ratio, subSequence } = sequenceProps
const letterKey = numToLetterMap[position]
const letterKey = this.call("isString", position) ? position : numToLetterMap[position]

@@ -176,0 +176,0 @@ if (!letterKey) {

Sorry, the diff of this file is too big to display