UNPKG

@parcel/utils

Version:

Blazing fast, zero configuration web application bundler

12 lines (10 loc) 243 B
// @flow strict export default function parseCSSImport(url: string): string { if (!/^(~|\.\/|\/)/.test(url)) { return './' + url; } else if (!/^(~\/|\.\/|\/)/.test(url)) { return url.substring(1); } else { return url; } }