url or path
Example:
import {parseFile} from '@tbela99/css-parser';
// remote file
let result = await parseFile('https://docs.deno.com/styles.css');
console.log(result.ast);
// local file
result = await parseFile('./css/styles.css');
console.log(result.ast);
parse css file