mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-26 21:55:08 -05:00
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.
13 lines
254 B
TypeScript
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,
|
|
};
|