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

contao-utils-bundle

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contao-utils-bundle - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

7

js/dom.js
module.exports = {
getTextWithoutChildren: function(element, notrim) {
let result = element.clone().children().remove().text();
let result = element.clone();
result.children().remove();
if (typeof notrim !== 'undefined' && notrim === true) {
return result;
return result.text();
} else {
return result.trim();
return result.text().trim();
}
},
};
{
"name": "contao-utils-bundle",
"version": "1.0.2",
"version": "1.0.3",
"description": "This package contains the frontend assets of the composer bundle heimrichhannot/contao-utils-bundle.",

@@ -5,0 +5,0 @@ "main": "js/utils-bundle",

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