web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243 B

  1. let { Input } = require('postcss')
  2. let SafeParser = require('./safe-parser')
  3. module.exports = function safeParse (css, opts) {
  4. let input = new Input(css, opts)
  5. let parser = new SafeParser(input)
  6. parser.parse()
  7. return parser.root
  8. }