mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +00:00
4 lines
87 B
TypeScript
4 lines
87 B
TypeScript
export function isCSSUrl(url: string): boolean {
|
|
return /\.css(\?.*)?$/.test(url);
|
|
}
|