README.md
# Utils
[](https://github.com/CrazySquirrel/Utils)
[](https://codeclimate.com/github/CrazySquirrel/Utils)
[](https://codeclimate.com/github/CrazySquirrel/Utils/coverage)
[](https://codeclimate.com/github/CrazySquirrel/Utils)
[](http://crazysquirrel.ru/support/)
Utils for working with DOM, Window, Screen and etc.
## Build
The repository contains pre-compiled files, but if you want to add your
files and compile, then run the following commands in the repository folder.
* npm install
* npm run production
or
* npm run development
The build required NodeJs version 6 or higher.
## Usage
```TypeScript
import Utils from "Utils.ts";
Utils.Document.getHeight();
```
or
```JavaScript
let Utils = required("Utils.js");
Utils.Document.getHeight();
```