pmcf 6.2.2 → 6.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/base.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.2.2",
3
+ "version": "6.2.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/base.mjs CHANGED
@@ -511,7 +511,7 @@ export class Base {
511
511
  stopClass: Base,
512
512
  root: this,
513
513
  valueFor: (name, at) =>
514
- at === undefined ? globals[name] : this.value(name)
514
+ at === undefined ? globals[name] : at.value(name)
515
515
  });
516
516
  }
517
517