Fix: workaround normalize domain

This commit is contained in:
SukkaW
2024-08-04 23:00:47 +08:00
parent b3d3052630
commit 32ef8ef7b6
6 changed files with 280 additions and 258 deletions

View File

@@ -0,0 +1,9 @@
import { describe, it } from 'mocha';
import { normalizeDomain } from './normalize-domain';
describe('normalizeDomain', () => {
it('mine.torrent.pw', () => {
console.log(normalizeDomain('mine.torrent.pw'));
});
});