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 std = @import("std"); | |
| const math = std.math; | |
| const complex = math.complex; | |
| const Complex = math.Complex; | |
| const debug = std.debug; | |
| const time = std.time; | |
| const heap = std.heap; | |
| const mem = std.mem; | |
| const Random = std.Random; | |
| const posix = std.posix; |
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 std = @import("std"); | |
| pub fn readFloat16(stream: anytype) !f16 { | |
| var buffer: [2]u8 align(@alignOf(f16)) = undefined; | |
| _ = try stream.readAll(&buffer); | |
| return std.mem.bytesAsValue(f16, &buffer).*; | |
| } |
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
| for (const toStringProperty of Object.getOwnPropertyNames(Window.prototype.toString || window.__proto__.toString)) { | |
| if (toStringProperty !== "length" && toStringProperty !== "name") { | |
| console.log("Adguard detected"); | |
| break; | |
| } | |
| } |
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
| var packageFunction; | |
| var p; | |
| var attribute; | |
| var namespacedP; | |
| packageFunction = function (P, window, undefined) { | |
| (function (t) { | |
| var e = {}; | |
| function n(r) { | |
| if (e[r]) { | |
| return e[r].exports; |
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
| (function (e, t) { | |
| if (typeof exports == "object" && typeof module != "undefined") { | |
| t(exports); | |
| } else if (typeof define == "function" && define.amd) { | |
| define(["exports"], t); | |
| } else { | |
| t((e = typeof globalThis != "undefined" ? globalThis : e || self).byted_acrawler = {}); | |
| } | |
| })(this, function (Hb) { | |
| "use strict"; |