Socket
Socket
Sign inDemoInstall

cordova-plugin-localization-strings

Package Overview
Dependencies
26
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.1.2 to 4.1.3

2

package.json
{
"name": "cordova-plugin-localization-strings",
"version": "4.1.2",
"version": "4.1.3",
"description": "Cordova Plugin for handling localization strings on InfoPlist.strings and Localizable.strings on iOS, strings.xml on Android",

@@ -5,0 +5,0 @@ "keywords": [

@@ -22,2 +22,7 @@ var fs = require('fs');

var matches = config.match(new RegExp('<name>(.*?)</name>', 'i'));
// if simple name-tag not found then try optional form of name tag with short name
if (!matches)
matches = config.match(new RegExp('<name short=".*?">(.*?)</name>', 'i'));
return (matches && matches[1]) || null;

@@ -24,0 +29,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc