UNPKG

@adguard/agtree

Version:
29 lines (26 loc) 913 B
/* * AGTree v3.4.3 (build date: Thu, 11 Dec 2025 13:43:19 GMT) * (c) 2025 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ import { CompatibilityTableBase } from './base.js'; import { scriptletsCompatibilityTableData } from './compatibility-table-data.js'; import { deepFreeze } from '../utils/deep-freeze.js'; /** * @file Compatibility tables for scriptlets. */ /** * Compatibility table for scriptlets. */ class ScriptletsCompatibilityTable extends CompatibilityTableBase { } /** * Deep freeze the compatibility table data to avoid accidental modifications. */ deepFreeze(scriptletsCompatibilityTableData); /** * Compatibility table instance for scriptlets. */ const scriptletsCompatibilityTable = new ScriptletsCompatibilityTable(scriptletsCompatibilityTableData); export { scriptletsCompatibilityTable };