Skip to content

Commit

Permalink
README.html
Browse files Browse the repository at this point in the history
README.md
bijou-min.js
bijou.js

  ____ _____     _  ____  _    _      _  _____
 |  _ \_   _|   | |/ __ \| |  | |    | |/ ____|
 | |_) || |     | | |  | | |  | |    | | (___
 |  _ < | | _   | | |  | | |  | |_   | |\___ \
 | |_) || || |__| | |__| | |__| | |__| |____) |
 |____/_____\____/ \____/ \____(_)____/|_____/

Files changed:

 M README.html
 M README.md
 M bijou-min.js
 M bijou.js

Date: 2021-01-15 17:48:12
User: Explosion-Scratch
Email: explosion.scratch@gmail.com
  • Loading branch information
Explosion-Scratch committed Jan 15, 2021
1 parent 07f5b55 commit 2e1c3e6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
10 changes: 9 additions & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ <h2 id="functions">Functions:</h2>
<p>Returns an element of the computed style, e.g.</p>
<pre><code class="js language-js">_$.compStyle(document.querySelector("h1"), "background-color") //Returns the background-color of the first &amp;lt;h1&amp;gt;
</code></pre>
<p></details><details>
<summary>composeFunction</summary></p>
<hr />
<p>Composes two functions together. Read more here: https://www.codementor.io/@michelre/use-function-composition-in-javascript-gkmxos5mj</p>
<p></details>
<details><summary>copy</summary></p>
<hr />
Expand All @@ -114,7 +118,11 @@ <h2 id="functions">Functions:</h2>
<pre><code class="js language-js">_$.createElement('&lt;div id=`fun`&gt;Hello&lt;/div&gt;);//Returns a DOM element whose id is 'fun' and whose innerText is 'Hello'
</code></pre>
<p></details>
<details><summary>dayName</summary></p>
<details><summary>curryFunction</summary></p>
<hr />
<p>Returns the curried version of a function. Read more here: https://medium.com/@abitoprakash/implementing-a-curry-function-in-javascript-6a249dbcb1bb</p>
<p></details></p>
<p><details><summary>dayName</summary></p>
<hr />
<p>Returns the day of the week from a Date object.</details></p>
<p><details><summary>each</summary></p>
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ Returns an element of the computed style, e.g.
_$.compStyle(document.querySelector("h1"), "background-color") //Returns the background-color of the first &lt;h1&gt;
```

</details><details>
<summary>composeFunction</summary>

---

Composes two functions together. Read more here: https://www.codementor.io/@michelre/use-function-composition-in-javascript-gkmxos5mj

</details>
<details><summary>copy</summary>

Expand All @@ -186,6 +193,14 @@ _$.createElement('<div id=`fun`>Hello</div>);//Returns a DOM element whose id is
```
</details>
<details><summary>curryFunction</summary>
---
Returns the curried version of a function. Read more here: https://medium.com/@abitoprakash/implementing-a-curry-function-in-javascript-6a249dbcb1bb
</details>
<details><summary>dayName</summary>
---
Expand Down
Loading

0 comments on commit 2e1c3e6

Please sign in to comment.