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.523

2

dist/cjs/utils/index.js

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

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

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

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

const { type, base, ratio, subSequence } = sequenceProps;
const letterKey = (void 0).call("isString", position) ? position : numToLetterMap[position];
const letterKey = 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.522",
"version": "2.11.523",
"files": [

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

},
"gitHead": "f0cf0f8e16c7cac278886a322e85cb8d8188ca24"
"gitHead": "08e5b257605d1475f4628529f8e35373d87eb369"
}

@@ -173,3 +173,3 @@ 'use strict'

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

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

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