https://github.com/coreui/coreui-utils
CoreUI JavaScript utility functions
https://github.com/coreui/coreui-utils
Last synced: about 1 year ago
JSON representation
CoreUI JavaScript utility functions
- Host: GitHub
- URL: https://github.com/coreui/coreui-utils
- Owner: coreui
- License: mit
- Created: 2019-12-09T09:41:07.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-07-20T05:34:12.000Z (almost 3 years ago)
- Last Synced: 2024-05-22T19:07:39.512Z (about 2 years ago)
- Language: TypeScript
- Size: 293 KB
- Stars: 6
- Watchers: 3
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoreUI Utilities
CoreUI utility JavaScript functions
## Installation
```shell
npm install @coreui/utils --save
```
## Usage
ES5 functions from common.js module
```js
import { deepObjectsMerge } from '@coreui/utils';
```
ES6+ functions from source, to enable treeshaking
```js
import { deepObjectsMerge } from '@coreui/utils/src';
```