├── .gitignore
├── CHANGELOG.md
├── doc-partials
└── body.hbs
├── rollup.config.js
├── dist
└── dork.min.js
├── example.html
├── LICENSE
├── README.hbs
├── package.json
├── src
└── index.js
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # 0.1.0
2 | - Converted proof of concept at https://gist.github.com/adamghill/6cbd7f82fffcc72f4774d68c055f2feb to something a little more usable.
3 | - Make bundled version use `dork` namespace so functions don't conflict with anything else.
4 |
--------------------------------------------------------------------------------
/doc-partials/body.hbs:
--------------------------------------------------------------------------------
1 | {{>deprecated~}}
2 | {{>description~}}
3 | {{>summary~}}
4 | {{>augments~}}
5 | {{>implements~}}
6 | {{>mixes~}}
7 | {{>default~}}
8 | {{>chainable~}}
9 | {{>overrides~}}
10 | {{>returns~}}
11 | {{>category~}}
12 | {{>throws~}}
13 | {{>fires~}}
14 | {{>this~}}
15 | {{>access~}}
16 | {{>readOnly~}}
17 | {{>requires~}}
18 | {{>customTags~}}
19 | {{>see~}}
20 | {{>since~}}
21 | {{>version~}}
22 | {{>authors~}}
23 | {{>license~}}
24 | {{>copyright~}}
25 | {{>todo~}}
26 | {{>params~}}
27 | {{>properties~}}
28 | {{>examples~}}
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Rollup config
3 | *
4 | * This script config allows us to create a bundle of the library
5 | * the library is meant to be used at ES module, or -->
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
43 |