2022-09-09 16:11:18 +00:00
"use strict" ;
2024-04-07 07:56:46 +00:00
"use strict" ; ( ( ) => { var Ce = Object . create ; var ne = Object . defineProperty ; var Pe = Object . getOwnPropertyDescriptor ; var Oe = Object . getOwnPropertyNames ; var _e = Object . getPrototypeOf , Re = Object . prototype . hasOwnProperty ; var Me = ( t , e ) => ( ) => ( e || t ( ( e = { exports : { } } ) . exports , e ) , e . exports ) ; var Fe = ( t , e , n , r ) => { if ( e && typeof e == "object" || typeof e == "function" ) for ( let i of Oe ( e ) ) ! Re . call ( t , i ) && i !== n && ne ( t , i , { get : ( ) => e [ i ] , enumerable : ! ( r = Pe ( e , i ) ) || r . enumerable } ) ; return t } ; var De = ( t , e , n ) => ( n = t != null ? Ce ( _e ( t ) ) : { } , Fe ( e || ! t || ! t . _ _esModule ? ne ( n , "default" , { value : t , enumerable : ! 0 } ) : n , t ) ) ; var ae = Me ( ( se , oe ) => { ( function ( ) { var t = function ( e ) { var n = new t . Builder ; return n . pipeline . add ( t . trimmer , t . stopWordFilter , t . stemmer ) , n . searchPipeline . add ( t . stemmer ) , e . call ( n , n ) , n . build ( ) } ; t . version = "2.3.9" ; t . utils = { } , t . utils . warn = function ( e ) { return function ( n ) { e . console && console . warn && console . warn ( n ) } } ( this ) , t . utils . asString = function ( e ) { return e == null ? "" : e . toString ( ) } , t . utils . clone = function ( e ) { if ( e == null ) return e ; for ( var n = Object . create ( null ) , r = Object . keys ( e ) , i = 0 ; i < r . length ; i ++ ) { var s = r [ i ] , o = e [ s ] ; if ( Array . isArray ( o ) ) { n [ s ] = o . slice ( ) ; continue } if ( typeof o == "string" || typeof o == "number" || typeof o == "boolean" ) { n [ s ] = o ; continue } throw new TypeError ( "clone is not deep and does not support nested objects" ) } return n } , t . FieldRef = function ( e , n , r ) { this . docRef = e , this . fieldName = n , this . _stringValue = r } , t . FieldRef . joiner = "/" , t . FieldRef . fromString = function ( e ) { var n = e . indexOf ( t . FieldRef . joiner ) ; if ( n === - 1 ) throw "malformed field ref string" ; var r = e . slice ( 0 , n ) , i = e . slice ( n + 1 ) ; return new t . FieldRef ( i , r , e ) } , t . FieldRef . prototype . toString = function ( ) { return this . _stringValue == null && ( this . _stringValue = this . fieldName + t . FieldRef . joiner + this . docRef ) , this . _stringValue } ; t . Set = function ( e ) { if ( this . elements = Object . create ( null ) , e ) { this . length = e . length ; for ( var n = 0 ; n < this . length ; n ++ ) this . elements [ e [ n ] ] = ! 0 } else this . length = 0 } , t . Set . complete = { intersect : function ( e ) { return e } , union : function ( ) { return this } , contains : function ( ) { return ! 0 } } , t . Set . empty = { intersect : function ( ) { return this } , union : function ( e ) { return e } , contains : function ( ) { return ! 1 } } , t . Set . prototype . contains = function ( e ) { return ! ! this . elements [ e ] } , t . Set . prototype . intersect = function ( e ) { var n , r , i , s = [ ] ; if ( e === t . Set . complete ) return this ; if ( e === t . Set . empty ) return e ; this . length < e . length ? ( n = this , r = e ) : ( n = e , r = this ) , i = Object . keys ( n . elements ) ; for ( var o = 0 ; o < i . length ; o ++ ) { var a = i [ o ] ; a in r . elements && s . push ( a ) } return new t . Set ( s ) } , t . Set . prototype . union = function ( e ) { return e === t . Set . complete ? t . Set . complete : e === t . Set . empty ? this : new t . Set ( Object . keys ( this . elements ) . concat ( Object . keys ( e . elements ) ) ) } , t . idf = function ( e , n ) { var r = 0 ; for ( var i in e ) i != "_index" && ( r += Object . keys ( e [ i ] ) . length ) ; var s = ( n - r + . 5 ) / ( r + . 5 ) ; return Math . log ( 1 + Math . abs ( s ) ) } , t . Token = function ( e , n ) { this . str = e || "" , this . metadata = n || { } } , t . Token . prototype . toString = function ( ) { return this . str } , t . Token . prototype . update = function ( e ) { return this . str = e ( this . str , this . metadata ) , this } , t . Token . prototype . clone = function ( e ) { return e = e || function ( n ) { return n } , new t . Token ( e ( this . str , this . metadata ) , this . metadata ) } ; t . tokenizer = function ( e , n ) { if ( e == null || e == null ) return [ ] ; if ( Array . isArray ( e ) ) return e . map ( function ( y ) { return new t . Token ( t . utils . asString ( y ) . toLowerCase ( ) , t . utils . clone ( n ) ) } ) ; for ( var r = e . toString ( ) . toLowerCase ( ) , i = r . length , s = [ ] , o = 0 , a = 0 ; o <= i ; o ++ ) { var l = r . charAt ( o ) , u = o - a ; if ( l . match ( t . tokenizer . separator ) || o == i ) { if ( u > 0 ) { var d = t . utils . clone ( n ) || { } ; d . position = [ a , u ] , d . index = s . length , s . push ( new t . Token ( r . slice ( a , o ) , d ) ) } a = o + 1 } } return s } , t . tokenizer . separator = /[\s\-]+/ ; t . Pipeline = function ( ) { this . _stack = [ ] } , t . Pipeline . registeredFunctions = Object . create ( null ) , t . Pipeline . registerFunction = function ( e , n ) { n in this . registeredFunctions && t . utils . warn ( "Overwriting existing registered function: " + n ) , e . label = n , t . Pipeline . registeredFunctions [ e . label ] = e } , t . Pipeline . warnIfFunctionNotRegistered = function ( e ) { var n = e . label && e . label in this . registeredFunctions ; n || t . utils . warn ( ` Function is not registered with pipeline. This may cause problems when serialising the index.
2024-08-13 22:54:21 +00:00
` ,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r<n;r++){for(var i=this._stack[r],s=[],o=0;o<e.length;o++){var a=i(e[o],o,e);if(!(a==null||a===""))if(Array.isArray(a))for(var l=0;l<a.length;l++)s.push(a[l]);else s.push(a)}e=s}return e},t.Pipeline.prototype.runString=function(e,n){var r=new t.Token(e,n);return this.run([r]).map(function(i){return i.toString()})},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})};t.Vector=function(e){this._magnitude=0,this.elements=e||[]},t.Vector.prototype.positionForIndex=function(e){if(this.elements.length==0)return 0;for(var n=0,r=this.elements.length/2,i=r-n,s=Math.floor(i/2),o=this.elements[s*2];i>1&&(o<e&&(n=s),o>e&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(o<e)return(s+1)*2},t.Vector.prototype.insert=function(e,n){this.upsert(e,n,function(){throw"duplicate index"})},t.Vector.prototype.upsert=function(e,n,r){this._magnitude=0;var i=this.positionForIndex(e);this.elements[i]==e?this.elements[i+1]=r(this.elements[i+1],n):this.elements.splice(i,0,e,n)},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,n=this.elements.length,r=1;r<n;r+=2){var i=this.elements[r];e+=i*i}return this._magnitude=Math.sqrt(e)},t.Vector.prototype.dot=function(e){for(var n=0,r=this.elements,i=e.elements,s=r.length,o=i.length,a=0,l=0,u=0,d=0;u<s&&d<o;)a=r[u],l=i[d],a<l?u+=2:a>l?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n<this.elements.length;n+=2,r++)e[r]=this.elements[n];return e},t.Vector.prototype.toJSON=function(){return this.elements};t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},n={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},r="[^aeiou]",i="[aeiouy]",s=r+"[^aeiouy]*",o=i+"[aeiou]*",a="^("+s+")?"+o+s,l="^("+s+")?"+o+s+"("+o+")? $ ",u="^("+s+")?"+o+s+o+s,d="^("+s+")?"+i,y=new RegExp(a),p=new RegExp(u),b=new RegExp(l),g=new RegExp(d),L=/^(.+?)(ss|i)es $ /,f=/^(.+?)([^s])s $ /,m=/^(.+?)eed $ /,S=/^(.+?)(ed|ing) $ /,w=/. $ /,k=/(at|bl|iz) $ /,_=new RegExp("([^aeiouylsz]) \\ 1 $ "),B=new RegExp("^"+s+i+"[^aeiouwxy] $ "),A=/^(.+?[^aeiou])y $ /,j=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi) $ /, $ =/^(.+?)(icate|ative|alize|iciti|ical|ful|ness) $ /,V=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize) $ /,q=/^(.+?)(s|t)(ion) $ /,C=/^(.+?)e $ /,z=/ll $ /,W=new RegExp("^"+s+i+"[^aeiouwxy] $ "),N=function(c){var v,P,T,h,x,O,M;if(c.length<3)return c;if(T=c.substr(0,1),T=="y"&&(c=T.toUpperCase()+c.substr(1)),h=L,x=f,h.test(c)?c=c.replace(h," $ 1 $ 2"):x.test(c)&&(c=c.replace(x," $ 1 $ 2")),h=m,x=S,h.test(c)){var E=h.exec
$ { ce ( l . parent , i ) } . < / s p a n > $ { d } ` ) ; l e t y = d o c u m e n t . c r e a t e E l e m e n t ( " l i " ) ; y . c l a s s L i s t . v a l u e = l . c l a s s e s ? ? " " ; l e t p = d o c u m e n t . c r e a t e E l e m e n t ( " a " ) ; p . h r e f = r . b a s e + l . u r l , p . i n n e r H T M L = u + d , y . a p p e n d ( p ) , e . a p p e n d C h i l d ( y ) } } f u n c t i o n u e ( t , e ) { l e t n = t . q u e r y S e l e c t o r ( " . c u r r e n t " ) ; i f ( ! n ) n = t . q u e r y S e l e c t o r ( e = = 1 ? " l i : f i r s t - c h i l d " : " l i : l a s t - c h i l d " ) , n & & n . c l a s s L i s t . a d d ( " c u r r e n t " ) ; e l s e { l e t r = n ; i f ( e = = = 1 ) d o r = r . n e x t E l e m e n t S i b l i n g ? ? v o i d 0 ; w h i l e ( r i n s t a n c e o f H T M L E l e m e n t & & r . o f f s e t P a r e n t = = n u l l ) ; e l s e d o r = r . p r e v i o u s E l e m e n t S i b l i n g ? ? v o i d 0 ; w h i l e ( r i n s t a n c e o f H T M L E l e m e n t & & r . o f f s e t P a r e n t = = n u l l ) ; r & & ( n . c l a s s L i s t . r e m o v e ( " c u r r e n t " ) , r . c l a s s L i s t . a d d ( " c u r r e n t " ) ) } } f u n c t i o n N e ( t , e ) { l e t n = t . q u e r y S e l e c t o r ( " . c u r r e n t " ) ; i f ( n | | ( n = t . q u e r y S e l e c t o r ( " l i : f i r s t - c h i l d " ) ) , n ) { l e t r = n . q u e r y S e l e c t o r ( " a " ) ; r & & ( w i n d o w . l o c a t i o n . h r e f = r . h r e f ) , e . b l u r ( ) } } f u n c t i o n c e ( t , e ) { i f ( e = = = " " ) r e t u r n t ; l e t n = t . t o L o c a l e L o w e r C a s e ( ) , r = e . t o L o c a l e L o w e r C a s e ( ) , i = [ ] , s = 0 , o = n . i n d e x O f ( r ) ; f o r ( ; o ! = - 1 ; ) i . p u s h ( K ( t . s u b s t r i n g ( s , o ) ) , ` < b > $ { K ( t . s u b s t r i n g ( o , o + r . l e n g t h ) ) } < / b > ` ) , s = o + r . l e n g t h , o = n . i n d e x O f ( r , s ) ; r e t u r n i . p u s h ( K ( t . s u b s t r i n g ( s ) ) ) , i . j o i n ( " " ) } v a r H e = { " & " : " & a m p ; " , " < " : " & l t ; " , " > " : " & g t ; " , " ' " : " & # 0 3 9 ; " , ' " ' : " & q u o t ; " } ; f u n c t i o n K ( t ) { r e t u r n t . r e p l a c e ( / [ & < > " ' " ] / g , e = > H e [ e ] ) } v a r I = c l a s s { c o n s t r u c t o r ( e ) { t h i s . e l = e . e l , t h i s . a p p = e . a p p } } ; v a r F = " m o u s e d o w n " , f e = " m o u s e m o v e " , H = " m o u s e u p " , J = { x : 0 , y : 0 } , p e = ! 1 , e e = ! 1 , B e = ! 1 , D = ! 1 , m e = / A n d r o i d | w e b O S | i P h o n e | i P a d | i P o d | B l a c k B e r r y | I E M o b i l e | O p e r a M i n i / i . t e s t ( n a v i g a t o r . u s e r A g e n t ) ; d o c u m e n t . d o c u m e n t E l e m e n t . c l a s s L i s t . a d d ( m e ? " i s - m o b i l e " : " n o t - m o b i l e " ) ; m e & & " o n t o u c h s t a r t " i n d o c u m e n t . d o c u m e n t E l e m e n t & & ( B e = ! 0 , F = " t o u c h s t a r t " , f e = " t o u c h m o v e " , H = " t o u c h e n d " ) ; d o c u m e n t . a d d E v e n t L i s t e n e r ( F , t = > { e e = ! 0 , D = ! 1 ; l e t e = F = = " t o u c h s t a r t " ? t . t a r g e t T o u c h e s [ 0 ] : t ; J . y = e . p a g e Y | | 0 , J . x = e . p a g e X | | 0 } ) ; d o c u m e n t . a d d E v e n t L i s t e n e r ( f e , t = > { i f ( e e & & ! D ) { l e t e = F = = " t o u c h s t a r t " ? t . t a r g e t T o u c h e s [ 0 ] : t , n = J . x - ( e . p a g e X | | 0 ) , r = J . y - ( e . p a g e Y | | 0 ) ; D = M a t h . s q r t ( n * n + r * r ) > 1 0 } } ) ; d o c u m e n t . a d d E v e n t L i s t e n e r ( H , ( ) = > { e e = ! 1 } ) ; d o c u m e n t . a d d E v e n t L i s t e n e r ( " c l i c k " , t = > { p e & & ( t . p r e v e n t D e f a u l t ( ) , t . s t o p I m m e d i a t e P r o p a g a t i o n ( ) , p e = ! 1 ) } ) ; v a r X = c l a s s e x t e n d s I { c o n s t r u c t o r ( e ) { s u p e r ( e ) , t h i s . c l a s s N a m e = t h i s . e l . d a t a s e t . t o g g l e | | " " , t h i s . e l . a d d E v e n t L i s t e n e r ( H , n = > t h i s . o n P o i n t e r U p ( n ) ) , t h i s . e l . a d d E v e n t L i s t e n e r ( " c l i c k " , n = > n . p r e v e n t D e f a u l t ( ) ) , d o c u m e n t . a d d E v e n t L i s t e n e r ( F , n = > t h i s . o n D o c u m e n t P o i n t e r D o w n ( n ) ) , d o c u m e n t . a d d E v e n t L i s t e n e r ( H , n = > t h i s . o n D o c u m e n t P o i n t e r U p ( n ) ) } s e t A c t i v e ( e ) { i f ( t h i s . a c t i v e = = e ) r e t u r n ; t h i s . a c t i v e = e , d o c u m e n t . d o c u m e n t E l e m e n t . c l a s s L i s t . t o g g l e ( " h a s - " + t h i s . c l a s s N a m e , e ) , t h i s . e l . c l a s s L i s t . t o g g l e ( " a c t i v e " , e ) ; l e t n = ( t h i s . a c t i v e ? " t o - h a s - " : " f r o m - h a s - " ) + t h i s . c l a s s N a m e ; d o c u m e n t . d o c u m e n t E l e m e n t . c l a s s L i s t . a d d ( n ) , s e t T i m e o u t ( ( ) = > d o c u m e n t . d o c u m e n t E l e m e n t . c l a s s L i s t . r e m o v e ( n ) , 5 0 0 ) } o n P o i n t e r U p ( e ) { D | | ( t h i s . s e t A c t i v e ( ! 0 ) , e . p r e v e n t D e f a u l t ( ) ) } o n D o c u m e n t P o i n t e r D o w n ( e ) { i f ( t h i s . a c t i v e ) { i f ( e . t a r g e t . c l o s e s t ( " . c o l - s i d e b a r , . t s d - f i l t e r - g r o u p " ) ) r e t u r n ; t h i s . s e t A c t i v e ( ! 1 ) } } o n D o c u m e n t P o i n t e r U p ( e ) { i f ( ! D & & t h i s . a c t i v e & & e . t a r g e t . c l o s e s t ( " . c o l - s i d e b a r " ) ) { l e t n = e . t a r g e t . c l o s e s t ( " a " ) ; i f ( n ) { l e t r = w i n d o w . l o c a t i o n . h r e f ; r . i n d e x O f ( " # " ) ! = - 1 & & ( r = r . s u b s t r i n g ( 0 , r . i n d e x O f ( " # " ) ) ) , n . h r e f . s u b s t r i n g ( 0 , r . l e n g t h ) = = r & & s e t T i m e o u t ( ( ) = > t h i s . s e t A c t i v e ( ! 1 ) , 2 5 0 ) } } } } ; v a r t e ; t r y { t e = l o c a l S t o r a g e } c a t c h { t e = { g e t I t e m ( ) { r e t u r n n u l l } , s e t I t e m ( ) { } } } v a r Q = t e ; v a r y e = d o c u m e n t . h e a d . a p p e n d C h i l d ( d o c u m e n t . c r e a t e E l e m e n t ( " s t y l e " ) ) ; y e . d a t a s e t . f o r = " f i l t e r s " ; v a r Y = c l a s s e x t e n d s I { c o n s t r u c t o r ( e ) { s u p e r ( e ) , t h i s . k e y = ` f i l t e r - $ { t h i s . e l . n a m e } ` , t h i s . v a l u e = t h i s . e l . c h e c k e d , t h i s . e l . a d d E v e n t L i s t e n e r ( " c h a n g e " , ( ) = > { t h i s . s e t L o c a l S t o r a g e ( t h i s . e l . c h e c k e d ) } ) , t h i s . s e t L o c a l S t o r a g e ( t h i s . f r o m L o c a l S t o r a g e ( ) ) , y e . i n n e r H T M L + = ` h t m l : n o t ( . $ { t h i s . k e y } ) . t s d - i s - $ { t h i s . e l . n a m e } { d i s p l a y : n o n e ; }
2024-04-07 07:56:46 +00:00
` ,this.app.updateIndexVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.app.updateIndexVisibility()}};var Z=class extends I{constructor(e){super(e),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key= ` tsd - accordion - $ { this . summary . dataset . key ? ? this . summary . textContent . trim ( ) . replace ( /\s+/g , "-" ) . toLowerCase ( ) } ` ;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)}),this.update()}update(){this.icon.style.transform= ` rotate ( $ { this . el . open ? 0 : - 90 } deg ) ` ,Q.setItem(this.key,this.el.open.toString())}};function ge(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ve(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ve(t.value)})}function ve(t){document.documentElement.dataset.theme=t}var Le;function be(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",xe),xe())}async function xe(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();Le=t.dataset.base+"/",t.innerHTML="";for(let s of i)we(s,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function we(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class? ` $ { t . class } tsd - index - accordion ` :"tsd-index-accordion",s.dataset.key=i.join(" $ ");let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.innerHTML='<svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>',Ee(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)we(u,l,i)}else Ee(t,r,t.class)}function Ee(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=Le+t.path,n&&(r.className=n),location.pathname===r.pathname&&r.classList.add("current"),t.kind&&(r.innerHTML= ` < svg width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" class = "tsd-kind-icon" > < use href = "#icon-${t.kind}" > < / u s e > < / s v g > ` ) , r . a p p e n d C h i l d ( d o c u m e n t . c r e a t e E l e m e n t ( " s p a n " ) ) . t e x t C o n t e n t = t . t e x t } e l s e e . a p p e n d C h i l d ( d o c u m e n t . c r e a t e E l e m e n t ( " s p a n " ) ) . t e x t C o n t e n t = t . t e x t } G ( X , " a [ d a t a - t o g g l e ] " ) ; G ( Z , " . t s d - i n d e x - a c c o r d i o n " ) ; G ( Y , " . t s d - f i l t e r - i t e m i n p u t [ t y p e = c h e c k b o x ] " ) ; v a r S e = d o c u m e n t . g e t E l e m e n t B y I d ( " t s d - t h e m e " ) ; S e & & g e ( S e ) ; v a r j e = n e w U ; O b j e c t . d e f i n e P r o p e r t y ( w i n d o w , " a p p " , { v a l u e : j e } ) ; h e ( ) ; b e ( ) ; } ) ( ) ;
2023-02-09 21:43:17 +00:00
/ * ! B u n d l e d l i c e n s e i n f o r m a t i o n :
lunr / lunr . js :
( * *
* lunr - http : //lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9
* Copyright ( C ) 2020 Oliver Nightingale
* @ license MIT
* )
( * !
* lunr . utils
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . Set
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . tokenizer
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . Pipeline
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . Vector
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . stemmer
* Copyright ( C ) 2020 Oliver Nightingale
* Includes code from - http : //tartarus.org/~martin/PorterStemmer/js.txt
* )
( * !
* lunr . stopWordFilter
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . trimmer
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . TokenSet
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . Index
* Copyright ( C ) 2020 Oliver Nightingale
* )
( * !
* lunr . Builder
* Copyright ( C ) 2020 Oliver Nightingale
* )
* /