@vacantthinker/firefox-addon-framework-easy 2026.603.1932 → 2026.603.2007

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": "@vacantthinker/firefox-addon-framework-easy",
3
- "version": "2026.0603.1932",
3
+ "version": "2026.0603.2007",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
package/src/BaseORM.js CHANGED
@@ -25,11 +25,8 @@ export class BaseORM {
25
25
  throw new Error('Both prefix and id must be specified.');
26
26
  }
27
27
 
28
- // Automatically normalize the prefix format to ensure a clean trailing space
29
- const formattedPrefix = prefix.endsWith(' ') ? prefix : `${prefix} `;
30
-
31
28
  // Lock down the final storage key during instance construction
32
- this.#fullStorageKey = `${formattedPrefix}${id}`;
29
+ this.#fullStorageKey = `${prefix}${id}`;
33
30
 
34
31
  // Deep clone the default value to protect against object reference shared-state bugs
35
32
  this.#defaultValue = JSON.parse(JSON.stringify(defaultValue));
package/src/DomainORM.js CHANGED
@@ -2,7 +2,7 @@ import {BaseORM} from './BaseORM.js';
2
2
 
3
3
  export class DomainORM extends BaseORM {
4
4
  constructor(domain) {
5
- super(`domain`, domain, {
5
+ super(``, domain, {
6
6
 
7
7
  });
8
8
  }