@riocrypto/common 1.0.1606 → 1.0.1609
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/build/index.d.ts
CHANGED
|
@@ -269,7 +269,6 @@ export * from "./classes/PartnerClass";
|
|
|
269
269
|
export * from "./classes/ImmigrationStatusClass";
|
|
270
270
|
export * from "./helpers/get-user-from-client-helper";
|
|
271
271
|
export * from "./helpers/validate-address";
|
|
272
|
-
export * from "./helpers/round-down-to-two-decimal-places";
|
|
273
272
|
export * from "./helpers/humanize-order-status";
|
|
274
273
|
export * from "./helpers/humanize-chained-order-status";
|
|
275
274
|
export * from "./helpers/humanize-onboarding-status";
|
package/build/index.js
CHANGED
|
@@ -285,7 +285,6 @@ __exportStar(require("./classes/PartnerClass"), exports);
|
|
|
285
285
|
__exportStar(require("./classes/ImmigrationStatusClass"), exports);
|
|
286
286
|
__exportStar(require("./helpers/get-user-from-client-helper"), exports);
|
|
287
287
|
__exportStar(require("./helpers/validate-address"), exports);
|
|
288
|
-
__exportStar(require("./helpers/round-down-to-two-decimal-places"), exports);
|
|
289
288
|
__exportStar(require("./helpers/humanize-order-status"), exports);
|
|
290
289
|
__exportStar(require("./helpers/humanize-chained-order-status"), exports);
|
|
291
290
|
__exportStar(require("./helpers/humanize-onboarding-status"), exports);
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const roundDownToTwoDecimalPlaces: (number: number) => number;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.roundDownToTwoDecimalPlaces = void 0;
|
|
4
|
-
const roundDownToTwoDecimalPlaces = (number) => {
|
|
5
|
-
return Number(number.toFixed(2));
|
|
6
|
-
};
|
|
7
|
-
exports.roundDownToTwoDecimalPlaces = roundDownToTwoDecimalPlaces;
|