#{DESC}#

Home - Documentation

# Install / Import ```bash $ npm install --save #{REPO_NAME}# ``` ```typescript import { myFunction, myObject } from "#{REPO_NAME}#"; ``` Specific imports: ```typescript import { myFunction } from "#{REPO_NAME}#/myFunction"; import { myObject } from "#{REPO_NAME}#/myObject"; ``` ## Import from HTML, with CDN Import it via a bundle that creates a global ( wider browser support ): ```html ``` Or import it as an ES module: ```html ``` _You can specify the version you wish to import:_ [unpkg.com](https://unpkg.com) ## Contribute ```bash npm install npm run build npm test ```