@naturalcycles/nodejs-lib 15.0.0 → 15.0.1

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.
@@ -24,7 +24,3 @@ export declare const inspectStringifyFn: JsonStringifyFunction;
24
24
  * Based on `_stringify` from `js-lib`, just replaced `JSON.stringify` with `util.inspect`.
25
25
  */
26
26
  export declare function _inspect(obj: any, opt?: InspectAnyOptions): string;
27
- /**
28
- * @deprecated renamed to _inspect
29
- */
30
- export declare const inspectAny: typeof _inspect;
@@ -41,7 +41,3 @@ export function _inspect(obj, opt = {}) {
41
41
  }),
42
42
  });
43
43
  }
44
- /**
45
- * @deprecated renamed to _inspect
46
- */
47
- export const inspectAny = _inspect;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/nodejs-lib",
3
3
  "type": "module",
4
- "version": "15.0.0",
4
+ "version": "15.0.1",
5
5
  "dependencies": {
6
6
  "@naturalcycles/js-lib": "^15",
7
7
  "@types/js-yaml": "^4",
@@ -50,8 +50,3 @@ export function _inspect(obj: any, opt: InspectAnyOptions = {}): string {
50
50
  }),
51
51
  })
52
52
  }
53
-
54
- /**
55
- * @deprecated renamed to _inspect
56
- */
57
- export const inspectAny = _inspect