Files
feeddeck/supabase/functions/_shared/utils/index.ts
Rico Berger 982add8fbb [core] Update Deno Modules (#100)
This commit updates all used Deno modules to their latest version.

Since some of the used modules / functions were deprecated we had to
adjust our encrypt / descrypt functions and the generation of the source
and item ids, where we have to use a new md5 function.
2023-12-12 20:32:44 +01:00

13 lines
254 B
TypeScript

import { fetchWithTimeout } from './fetchWithTimeout.ts';
import { log } from './log.ts';
import { md5 } from './md5.ts';
import { decrypt, encrypt } from './encrypt.ts';
export const utils = {
fetchWithTimeout,
log,
md5,
encrypt,
decrypt,
};