Find the hidden web page in the frame.
npm install stripframe

Find the hidden web page in the frame.
```
npm install stripframe
`js`
var stripframe = require('stripframe');
var frame = stripframe('');
console.log(frame.url()); // /blogPostView?id=00000
`js``
var axios = require('axios');
var stripframe = require('stripframe');
axios.get('http://blog.example.com/00000')
.then(response => stripframe(response.data))
.then(frame => frame.url())
.then(url => console.log(url)); // /blogPostView?id=00000
MIT