Hi, I am Saurabh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const { JSDOM } = require('jsdom'); | |
| const content = fs.readFileSync('./src/index.html', 'utf-8'); | |
| const nodeScriptRegex = /<script node="">(.*?)<\/script>/gs; | |
| const clientScriptRegex = /<script>(.*?)<\/script>/gs; | |
| const clientScriptMatches = []; | |
| let clientScriptCounter = -1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="portfolio-loader"> | |
| <div class="sun"></div> | |
| <div class="orbit orbit1"><div class="planetX planet1"></div></div> | |
| <div class="orbit orbit2"><div class="planetX planet2"></div></div> | |
| <div class="orbit orbit3"><div class="planetX planet3"></div></div> | |
| </div> |