Merge branch 'master' of https://gitlab.libraryofcode.us/engineering/cloudservices-rewrite
commit
97152cd063
|
@ -8,7 +8,7 @@
|
||||||
"build": "tsc -p ./tsconfig.json"
|
"build": "tsc -p ./tsconfig.json"
|
||||||
},
|
},
|
||||||
"author": "Library of Code sp-us Engineering Team",
|
"author": "Library of Code sp-us Engineering Team",
|
||||||
"license": "MIT",
|
"license": "AGPL-3.0-only",
|
||||||
"private": false,
|
"private": false,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ghaiklor/x509": "^1.0.0",
|
"@ghaiklor/x509": "^1.0.0",
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
import uuid from 'uuid/v4';
|
|
||||||
import { Client } from '..';
|
import { Client } from '..';
|
||||||
import { RichEmbed } from '../class';
|
|
||||||
|
|
||||||
export default function checkLock(client: Client) {
|
export default function checkLock(client: Client): void {
|
||||||
setInterval(async () => {
|
setInterval(async () => {
|
||||||
try {
|
try {
|
||||||
const moderations = await client.db.Moderation.find();
|
const moderations = await client.db.Moderation.find();
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
export default function dataConversion(bytes) {
|
export default function dataConversion(bytes: number): string {
|
||||||
const i = Math.floor(Math.log(bytes) / Math.log(1024));
|
const i = Math.floor(Math.log(bytes) / Math.log(1024));
|
||||||
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
||||||
if (bytes === 0) {
|
if (bytes === 0) {
|
||||||
|
|
Loading…
Reference in New Issue