mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-13 18:22:13 +08:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
const pitcher = (code: string): string => code;
|
|
|
|
export function pitch(this: any) {
|
|
if (/&blockType=config/.test(this.resourceQuery)) {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
export default pitcher;
|