2022-02-16 11:20:17 +08:00

4 lines
80 B
TypeScript

export function isCSSUrl(url: string): boolean {
return /\.css$/.test(url);
}