Skip to content

Commit

Permalink
Deployed 0ab2a83 with MkDocs version: 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fatso83 committed Sep 12, 2024
1 parent 8f793a5 commit 5f64916
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ <h4 id="string-matcher">String matcher</h4>
return &quot;yeah&quot;;
},
},
&quot;Yeah!&quot;
&quot;Yeah!&quot;,
); // true
</code></pre>
<p>The last example is not symmetric. When the matcher is a string, the <code>object</code>
Expand All @@ -379,7 +379,7 @@ <h4 id="regular-expression-matcher">Regular expression matcher</h4>
return &quot;yeah!&quot;;
},
},
/yeah/
/yeah/,
); // true
samsam.match(234, /[a-z]/); // false
</code></pre>
Expand All @@ -393,7 +393,7 @@ <h4 id="number-matcher">Number matcher</h4>
return &quot;42&quot;;
},
},
42
42,
); // true
samsam.match(234, 1234); // false
</code></pre>
Expand Down Expand Up @@ -421,7 +421,7 @@ <h4 id="function-matcher">Function matcher</h4>
},
function () {
return true;
}
},
);

// false
Expand Down Expand Up @@ -455,7 +455,7 @@ <h4 id="object-matcher">Object matcher</h4>
},
{
name: &quot;Chris&quot;,
}
},
);

// false
Expand Down Expand Up @@ -521,5 +521,5 @@ <h4 id="dom-elements">DOM elements</h4>

<!--
MkDocs version : 1.2.3
Build Date UTC : 2023-03-26 12:53:08.981852+00:00
Build Date UTC : 2024-09-12 23:24:51.617899+00:00
-->
Loading

0 comments on commit 5f64916

Please sign in to comment.