targetj 1.0.21 → 1.0.23

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": "targetj",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "keywords": [
5
5
  "targetj"
6
6
  ],
@@ -2,6 +2,7 @@ import { Bracket } from "./Bracket.js";
2
2
  import { TUtil } from "./TUtil.js";
3
3
  import { TargetUtil } from "./TargetUtil.js";
4
4
  import { tapp } from "./App.js";
5
+ import { browser } from "./Browser.js";
5
6
 
6
7
  function LocationManager() {
7
8
  this.hasLocationList = [];
package/src/TUtil.js CHANGED
@@ -202,4 +202,4 @@ EasingEffects.circular = function (t) {
202
202
  return Math.sqrt(1 - (--t * t));
203
203
  };
204
204
 
205
- export { TUtil };
205
+ export { TUtil, EasingEffects };
@@ -1,5 +1,5 @@
1
1
  import { browser } from "./Browser.js";
2
- import { TUtil } from "./TUtil.js";
2
+ import { TUtil, EasingEffects } from "./TUtil.js";
3
3
  import { TargetUtil } from "./TargetUtil.js";
4
4
  import { tapp } from "./App.js";
5
5