-
-
Notifications
You must be signed in to change notification settings - Fork 32
Closed
Description
- Webpack Version: N/A
- Operating System (or Browser): macOS 10.14.2
- Node Version: 11.9.0
- postcss-values-parser Version: 3.0.0-beta.3
How Do We Reproduce?
Run this code:
const { parse } = require('postcss-values-parser');
const root = parse('url(//example.com)');
console.log(root.first.first);
Expected Behavior
root.first.first
to be a Word
node or whichever is suitable (I don't have a strong opinion on it, it could be multiple nodes as well).
Actual Behavior
root.first.first
is a Comment
node.