Skip to content

Latest commit

 

History

History
 
 

utils

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@smoovy/utils

Version Size

These are just some utilities I need for my websites. I think they're pretty self-explanatory. So you can just click through the files to find out more!

Installation

npm install --save @smoovy/utils

Modularity

To reduce the final bundle size even more, you can only import the utils you're really using. E.g.:

import { Browser } from '@smoovy/utils/m/browser';
import { objectDeepMerge } from '@smoovy/utils/m/object';

Development commands

// Serve with parcel
npm run serve

// Build with rollup
npm run build

// Run Jest unit tests
npm run test

// Run TSLinter
npm run lint

License

See the LICENSE file for license rights and limitations (MIT).