@zelgadis87/utils-core 4.3.2 → 4.3.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@zelgadis87/utils-core",
4
- "version": "4.3.2",
4
+ "version": "4.3.3",
5
5
  "author": "Zelgadis87",
6
6
  "license": "ISC",
7
7
  "private": false,
@@ -1,8 +1,7 @@
1
1
  import Deferred, { DeferredCanceledError, ICancelable, ICancelablePromise } from "../async/Deferred.js";
2
2
  import { randomInterval } from "../random";
3
3
  import { TComparisonResult } from "../sorting/index.js";
4
- import { TIntervalHandle, TMaybe, TTimeoutHandle, ensureNonNegativeNumber, ensurePositiveNumber } from "../types";
5
- import { pad } from "../utils";
4
+ import { TIntervalHandle, TMaybe, TTimeoutHandle, ensureNonNegativeNumber, ensurePositiveNumber, pad } from "../types";
6
5
  import TimeBase from "./TimeBase";
7
6
  import TimeInstant from "./TimeInstant";
8
7
  import TimeUnit from "./TimeUnit";
@@ -1,3 +0,0 @@
1
- export default function pad(str: string, n: number, char: string, where?: 'left' | 'right'): string;
2
- export declare function padLeft(str: string, n: number, char: string): string;
3
- export declare function padRight(str: string, n: number, char: string): string;
@@ -1 +0,0 @@
1
- export default function pluralize(n: number, singular: string, plural?: string): string;