Awesome-Design-Tools/docs/modules/helpers/getJS.js
Yevhenii Kutsenko 99c425dc2b Initial commit
2024-12-27 14:04:12 +03:00

12 lines
339 B
JavaScript

// const getJS = () => (
// fs.readFileSync(path.normalize(`${__dirname}/docs/js/script.js`), 'utf8')
// )
// const addScripts = ({ document }) => {
// const scriptTag = document.createElement('script');
// scriptTag.innerHTML = getJS();
// document.querySelector('body').appendChild(scriptTag);
// }
// module.exports = addScripts;