Библиотека для DTF альбома
À partir de
Ce script ne devrait pas être installé directement. C'est une librairie créée pour d'autres scripts. Elle doit être inclus avec la commande // @require https://updategf.qytechs.cn/scripts/450146/1085381/DTF%20Album%20library.js
// @namespace https://github.com/TentacleTenticals/DTF console mod
// @grant none
// @version 1.0
// @author Tentacle Tenticals
// @description Библиотека для модификации консоли
// @homepage https://github.com/TentacleTenticals/DTF functions
// @license MIT
// ==/UserScript==
/* jshint esversion:8 */
function consoleMod(){
const log = console.log.bind(console)
console.log = (...args) => {
if(Array.isArray(args)){
if(args[0]){
return args
}
}
log(...args)
}
}