UNPKG

@adguard/agtree

Version:
29 lines (26 loc) 913 B
/* * AGTree v4.1.1 (build date: Thu, 23 Apr 2026 09:15:37 GMT) * (c) 2026 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ import { deepFreeze } from '../utils/deep-freeze.js'; import { CompatibilityTableBase } from './base.js'; import { scriptletsCompatibilityTableData } from './compatibility-table-data.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 };