Type fixes again

This commit is contained in:
entar 2025-05-21 12:28:31 +07:00
parent 3a5f4836e5
commit 208d6704b0

View File

@ -30,7 +30,7 @@ module.exports = [
if (arguments) {
arguments.forEach((argument, index) => {
console.log(typeof argument)
if (typeof argument == "object") {
if (typeof argument == "object" || typeof argument == "function") {
arguments[index] = argument.prototype.name
}
})