Socket
Socket
Sign inDemoInstall

@domql/utils

Package Overview
Dependencies
Maintainers
1
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domql/utils - npm Package Compare versions

Comparing version 2.5.48 to 2.5.52

4

dist/cjs/string.js

@@ -21,2 +21,3 @@ "use strict";

__export(string_exports, {
lowercaseFirstLetter: () => lowercaseFirstLetter,
replaceLiteralsWithObjectFields: () => replaceLiteralsWithObjectFields,

@@ -61,1 +62,4 @@ stringIncludesAny: () => stringIncludesAny,

};
const lowercaseFirstLetter = (inputString) => {
return `${inputString.charAt(0).toLowerCase()}${inputString.slice(1)}`;
};

4

package.json
{
"name": "@domql/utils",
"version": "2.5.48",
"version": "2.5.52",
"license": "MIT",

@@ -26,3 +26,3 @@ "type": "module",

},
"gitHead": "68ea5ab143d09bdb009664526b638e7c804480c6",
"gitHead": "d417eb4852233ff71f790eae23b67b521e80c4f9",
"devDependencies": {

@@ -29,0 +29,0 @@ "@babel/core": "^7.12.0"

@@ -48,1 +48,5 @@ 'use strict'

}
export const lowercaseFirstLetter = (inputString) => {
return `${inputString.charAt(0).toLowerCase()}${inputString.slice(1)}`
}
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