This file contains 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
<p>This is the content of the about page </p> |
This file contains 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
function encodeURIObject = (obj, branch=[], results=[]) => { | |
if (obj instanceof Object) { | |
Object.keys(obj).forEach(key => { | |
const newBranch = new Array(...branch); | |
newBranch.push(key); | |
encodeURIObject(obj[key], newBranch, results); | |
}); | |
return results.join('&'); | |
} |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/frontexpress.min.js"></script> | |
<title>Prueba Front Express</title> | |
</head> | |
<body> | |
Probando <br /> | |
<a class="menu-item" data-id="page1" href="#"> page 1</a> |
This file contains 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
var fs = require('fs'); | |
function rmdirSync(dir) { | |
var currentDirToRead, | |
directoriesFound, | |
nextDirToReadIndex; | |
if (!fs.existsSync(dir)) { | |
return; | |
} |