2020-03-28 03:46:34 +08:00

4 lines
80 B
TypeScript

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