Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

botbuilder

Package Overview
Dependencies
Maintainers
1
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botbuilder - npm Package Compare versions

Comparing version 3.4.3 to 3.4.4

5

lib/DefaultLocalizer.js

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

var fbLocale = this.getFallback(locale);
ns = ns ? ns.toLocaleLowerCase() : null;
var key = this.createKey(ns, msgid);

@@ -169,3 +170,3 @@ var text = this.getEntry(locale, key);

.then(function (data) {
var ns = path.parse(filename).name;
var ns = path.parse(filename).name.toLocaleLowerCase();
if (ns == 'index') {

@@ -201,3 +202,3 @@ ns = null;

DefaultLocalizer.prototype.escapeKey = function (key) {
return key.replace(/:/g, "--");
return key.replace(/:/g, "--").toLowerCase();
};

@@ -204,0 +205,0 @@ DefaultLocalizer.prototype.getEntry = function (locale, key) {

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.",
"version": "3.4.3",
"version": "3.4.4",
"license": "MIT",

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

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