1.0.1 • Published 3 years ago
mrowz v1.0.1
- To use
const getCode = require('mrowz');
getCode('WEBSITE_URL/FILE_NAME')
.then(data => {
    console.log(data); // logs the contents of style.css to the console
  })
  .catch(error => {
    console.error(error.message); // logs an error message if the fetch request fails
  });