Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import Input from '../postcss/input'
import SafeParser from './safe-parser'

export default function safeParse(css, opts) {
  const input = new Input(css, opts)
  const parser = new SafeParser(input)
  parser.tokenize()
  parser.loop()
  return parser.root
}