Fix dependencies: Add flag-icons, tailwind directives, and postcss config

This commit is contained in:
MivoDev
2026-01-18 11:16:21 +07:00
commit 266a4b1296
10758 changed files with 1547435 additions and 0 deletions

26
node_modules/mark.js/test/specs/iframes/exclude.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
'use strict';
describe('mark with iframes and exclude', function() {
var $ctx, $elements;
beforeEach(function(done) {
loadFixtures('iframes/exclude.html');
$elements = $();
$ctx = $('.iframes-exclude');
new Mark($ctx[0]).mark('lorem', {
'diacritics': false,
'separateWordSearch': false,
'iframes': true,
'exclude': [
'.ignore'
],
'each': function($m) {
$elements = $elements.add($($m));
},
'done': done
});
});
it('should ignore iframes matching exclude selectors', function() {
expect($elements).toHaveLength(4);
});
});