UNPKG

react-viewport-utils

Version:

Utility components for working with the viewport in react

16 lines (14 loc) 309 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = parseCSSImport; function parseCSSImport(url) { if (!/^(~|\.\/|\/)/.test(url)) { return './' + url; } else if (!/^(~\/|\.\/|\/)/.test(url)) { return url.substring(1); } else { return url; } }