UNPKG

parcel-bundler

Version:

Blazing fast, zero configuration web application bundler

13 lines (10 loc) 229 B
"use strict"; function parseCSSImport(url) { if (!/^(~|\.\/|\/)/.test(url)) { url = './' + url; } else if (!/^(~\/|\.\/|\/)/.test(url)) { url = url.substring(1); } return url; } module.exports = parseCSSImport;