Socket
Socket
Sign inDemoInstall

react-i18next

Package Overview
Dependencies
Maintainers
2
Versions
313
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-i18next - npm Package Compare versions

Comparing version 11.14.2 to 11.14.3

4

CHANGELOG.md

@@ -0,1 +1,5 @@

### 11.14.3
- types: remove undefined from conditional type [1410](https://github.com/i18next/react-i18next/pull/1410)
### 11.14.2

@@ -2,0 +6,0 @@

4

package.json
{
"name": "react-i18next",
"version": "11.14.2",
"version": "11.14.3",
"description": "Internationalization for react done right. Using the i18next i18n ecosystem.",

@@ -88,3 +88,3 @@ "main": "dist/commonjs/index.js",

"tslint": "^5.20.1",
"typescript": "^4.3.2",
"typescript": "^4.5.2",
"yargs": "^13.3.0"

@@ -91,0 +91,0 @@ },

@@ -187,5 +187,5 @@ import i18next, {

type KeyPrefix<N extends Namespace> = N extends keyof DefaultResources
? Normalize<DefaultResources[N]> | undefined
: string | undefined;
type KeyPrefix<N extends Namespace> =
| (N extends keyof DefaultResources ? Normalize<DefaultResources[N]> : string)
| undefined;

@@ -192,0 +192,0 @@ export type TFuncKey<

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