feat: 脚手架基本ok
This commit is contained in:
8
bin/helpers/tauriConfig.ts
Normal file
8
bin/helpers/tauriConfig.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import crypto from 'crypto';
|
||||
|
||||
export function getIdentifier(name: string, url: string) {
|
||||
const hash = crypto.createHash('md5');
|
||||
hash.update(url);
|
||||
const postFixHash = hash.digest('hex').substring(0, 6);
|
||||
return `pake-${postFixHash}`;
|
||||
}
|
||||
Reference in New Issue
Block a user