This commit is contained in:
SukkaW
2025-05-22 20:14:01 +00:00
parent cf3d0395ca
commit 195dfdd279
6 changed files with 20 additions and 14 deletions

View File

@@ -2,9 +2,9 @@
'use strict';
// https://developers.google.com/doubleclick-gpt/reference
const noopfn = function () {
const noopfn = () => {
// noop
}.bind();
};
const noopthisfn = function () {
return this;
};