jmini 0.0.94 → 0.0.95

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/esm/core.d.ts +1 -1
  2. package/package.json +1 -1
package/esm/core.d.ts CHANGED
@@ -157,7 +157,7 @@ declare namespace Jmini {
157
157
  randomNumber(min?: number, max?: number, notIn?: number[]): number;
158
158
  Stringify(value: any, replacer?: ((this: any, key: string, value: any) => any) | (number | string)[] | null, space?: string | number): string;
159
159
  Objectify<T = any>(value: any, OnError?: any): T;
160
- SortifyObject<T = any>(value: KeyValueDict<T>, recursive?: boolean): T;
160
+ SortifyObject<T = KeyValueDict>(value: T, recursive?: boolean): T;
161
161
  try<T = any>(fn: {
162
162
  (): T;
163
163
  }): [T, boolean];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmini",
3
- "version": "0.0.94",
3
+ "version": "0.0.95",
4
4
  "description": "minified JavaScript Framework",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",