Initial commit
This commit is contained in:
12
node_modules/postcss-scss/lib/scss-parse.js
generated
vendored
Normal file
12
node_modules/postcss-scss/lib/scss-parse.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
let { Input } = require('postcss')
|
||||
|
||||
let ScssParser = require('./scss-parser')
|
||||
|
||||
module.exports = function scssParse(scss, opts) {
|
||||
let input = new Input(scss, opts)
|
||||
|
||||
let parser = new ScssParser(input)
|
||||
parser.parse()
|
||||
|
||||
return parser.root
|
||||
}
|
||||
Reference in New Issue
Block a user