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