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

i18n-format

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

i18n-format - npm Package Compare versions

Comparing version 3.0.0-pre.10 to 3.0.0-pre.11

10

i18n-format.js

@@ -298,3 +298,11 @@ /**

this.templateElement = this.elements[n];
this.templateTextNode = dom(this.templateElement).childNodes[0];
let i = 0;
do {
this.templateTextNode = dom(this.templateElement).childNodes[i++];
if (!this.templateTextNode) {
this.templateTextNode = dom(this.templateElement).childNodes[0];
break;
}
}
while (this.templateTextNode.nodeType !== this.templateTextNode.TEXT_NODE);
this.observer.observe(this.templateTextNode, { characterData: true });

@@ -301,0 +309,0 @@ }

2

package.json

@@ -21,3 +21,3 @@ {

"name": "i18n-format",
"version": "3.0.0-pre.10",
"version": "3.0.0-pre.11",
"main": "i18n-format.js",

@@ -24,0 +24,0 @@ "directories": {

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