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