extract-svg-viewbox
 !Build Status   
Extracts the viewBox information from an SVG string.
Install
``
npm i --save extract-svg-viewbox
`
Usage
`js
const extract = require('extract-svg-viewbox')
const svg =
const viewBox = extract(svg)
console.log(viewBox) // "0 0 460 460"
``
License
MIT © Luke Mitchell