gt-i18n 0.3.1 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gt-i18n",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Pure JS i18n library for General Translation",
5
5
  "main": "dist/index.cjs.min.cjs",
6
6
  "module": "dist/index.esm.min.mjs",
@@ -45,8 +45,8 @@
45
45
  "definition": "dist/index.d.ts"
46
46
  },
47
47
  "dependencies": {
48
- "@generaltranslation/supported-locales": "2.0.35",
49
- "generaltranslation": "8.1.5"
48
+ "@generaltranslation/supported-locales": "2.0.37",
49
+ "generaltranslation": "8.1.6"
50
50
  },
51
51
  "exports": {
52
52
  ".": {
@@ -1,13 +0,0 @@
1
- /**
2
- * Checks if a message contains variables.
3
- * @param message - The message to check.
4
- * @returns True if the message contains variables, false otherwise.
5
- *
6
- * @example
7
- * ```jsx
8
- * import { icuMessageContainsVariables } from 'gt-i18n/messages/utils';
9
- * const message = 'Hello {name}';
10
- * console.log(icuMessageContainsVariables(message)); // true
11
- * ```
12
- */
13
- export declare function icuMessageContainsVariables(message: string): boolean;