@kompanion/style
v0.0.2
Published
Tiny snippets of useful javascript code for websites and apps.
Maintainers
Readme
Kompanion utils
Tiny snippets of useful javascript code for websites and apps.
npm i @kompanion/utils
# or
yarn add @kompanion/utilsUtilities
As @kompanion/utils is written in Typescript, you get automatic intellisense by default if using editors like VS Code.
Arrays
shuffleArray
Self explanatory. The only argument is an array:
import { shuffleArray } from '@kompanion/utils';
const emojis = ['😄', '🤨', '🧡', '😝'];
const randomEmoji = shuffleArray(emojis)[0];DOM-related
scrollToId
Single argument: id: string
Uses the scrollIntoView API to smoothly scroll the screen to the object defined by the given id. If no object is found, does nothing.
<button onClick="scrollToId('contact')">Get in contact</button>getWindowSize
Checks if there's a window object (if it's a browser) and returns an object: {width: num, height: num}
TODO
- Add another
tsconfigfor an ES5 bundle - Finish documentation
