Telegram Web K with changes to work inside I2P
https://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
417 B
14 lines
417 B
3 years ago
|
module.exports = function(asset) {
|
||
|
if(asset.includes('.xml')
|
||
|
|| asset.includes('version')
|
||
|
|| asset.includes('assets/')
|
||
|
|| asset.includes('changelogs/')
|
||
|
|| asset.includes('.webmanifest')
|
||
|
|| asset.includes('.wasm')
|
||
|
|| asset.includes('rlottie-wasm')
|
||
|
|| asset.includes('Worker.min.js')
|
||
|
|| asset.includes('recorder.min.js')
|
||
|
|| asset.includes('.hbs')) return true;
|
||
|
return false;
|
||
|
}
|