@weborigami/async-tree 0.6.7 → 0.6.8

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/shared.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weborigami/async-tree",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "Asynchronous tree drivers based on standard JavaScript classes",
5
5
  "type": "module",
6
6
  "main": "./main.js",
package/shared.js CHANGED
@@ -26,6 +26,7 @@ export { default as getParent } from "./src/utilities/getParent.js";
26
26
  export { default as getRealmObjectPrototype } from "./src/utilities/getRealmObjectPrototype.js";
27
27
  export { default as isPacked } from "./src/utilities/isPacked.js";
28
28
  export { default as isPlainObject } from "./src/utilities/isPlainObject.js";
29
+ export { default as isPrimitive } from "./src/utilities/isPrimitive.js";
29
30
  export { default as isStringlike } from "./src/utilities/isStringlike.js";
30
31
  export { default as isUnpackable } from "./src/utilities/isUnpackable.js";
31
32
  export { default as keysFromPath } from "./src/utilities/keysFromPath.js";
@@ -62,7 +63,7 @@ export class ExplorableSiteTree extends ExplorableSiteMap {
62
63
  constructor(href) {
63
64
  super(href);
64
65
  console.warn(
65
- "ExplorableSiteTree is deprecated. Please use ExplorableSiteMap instead."
66
+ "ExplorableSiteTree is deprecated. Please use ExplorableSiteMap instead.",
66
67
  );
67
68
  }
68
69
  }