2020-04-27 00:07:43 +08:00

4 lines
80 B
TypeScript

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