⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
css-tree
/
data
/
Edit File: index.js
var mdnProperties = require('mdn-data/css/properties.json'); var mdnSyntaxes = require('mdn-data/css/syntaxes.json'); var patch = require('./patch.json'); function buildDictionary(dict, patchDict) { var result = {}; // copy all syntaxes for an original dict for (var key in dict) { result[key] = dict[key].syntax; } // apply a patch for (var key in patchDict) { if (key in dict) { if (patchDict[key].syntax) { result[key] = patchDict[key].syntax; } else { delete result[key]; } } else { if (patchDict[key].syntax) { result[key] = patchDict[key].syntax; } } } return result; } module.exports = { properties: buildDictionary(mdnProperties, patch.properties), types: buildDictionary(mdnSyntaxes, patch.syntaxes) };
Simpan