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
app.use( | |
function( request, response, proceed ){ | |
response | |
.header( | |
( | |
"Access-Control-Allow-Origin" | |
), | |
( | |
"*" |
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
If the orphaned branch is master and you want to move the main branch | |
(note that all branches must have corresponding remote branches to work properly) | |
git checkout master | |
then | |
git branch -M master main | |
then |
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
Array | |
.from( | |
( | |
( | |
new Map( | |
( | |
array | |
.map( | |
function( element ){ | |
return ( |
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
{ | |
"buildDependencyList": [ | |
{ | |
"@namespace": "terser", | |
"@reference": "npm:@volkovasystem/terser", | |
"@version": "4.6.13" | |
}, | |
{ | |
"@namespace": "parcel", | |
"@reference": "npm:@volkovasystem/parcel-bundler", |
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 getDateTime = ( | |
function getDateTime( ){ | |
const dateNowObject = ( | |
new Date( ) | |
); | |
return ( | |
[ | |
( | |
dateNowObject |
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 getTimeStamp = ( | |
function getTimeStamp( ){ | |
const dateNowObject = ( | |
new Date( ) | |
); | |
return ( | |
[ | |
( | |
dateNowObject |
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 getDateStamp = ( | |
function getDateStamp( ){ | |
const dateNowObject = ( | |
new Date( ) | |
); | |
return ( | |
[ | |
( | |
dateNowObject |
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 getDateTimeStamp = ( | |
function getDateTimeStamp( ){ | |
const dateNowObject = ( | |
new Date( ) | |
); | |
return ( | |
[ | |
( | |
dateNowObject |
NewerOlder