From 8e84d39c7f2531e81eed3a9d01bf4030b19a2c88 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sun, 14 Feb 2021 00:30:07 +0100 Subject: :sparkles: getPermission util function --- dist/util/convertBigIntToString.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 dist/util/convertBigIntToString.js (limited to 'dist/util/convertBigIntToString.js') diff --git a/dist/util/convertBigIntToString.js b/dist/util/convertBigIntToString.js deleted file mode 100644 index a72b5a57..00000000 --- a/dist/util/convertBigIntToString.js +++ /dev/null @@ -1,16 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.convertBigIntToString = void 0; -require("missing-native-js-functions"); -function convertBigIntToString(obj) { - if (typeof obj === "bigint") - obj = obj.toString(); - if (typeof obj === "object") { - obj.keys().forEach((key) => { - obj[key] = convertBigIntToString(obj[key]); - }); - } - return obj; -} -exports.convertBigIntToString = convertBigIntToString; -//# sourceMappingURL=convertBigIntToString.js.map \ No newline at end of file -- cgit 1.5.1