3.0.0 • Published 1 year ago

@foundriesio/js-utils v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Utils

Build Status

JavaScript utility library

  • No dependencies
  • Includes functional and DOM utility functions
  • Lightweight and untranspiled

Developed with ❤️ by GRRR

Documentation

View the documentation for all available functions.

Installation

$ npm install @grrr/utils

Note: depending on your setup additional configuration might be needed, since this package is published with untranspiled JavaScript.

Usage

Import a function and invoke it:

import { closest } from '@grrr/utils';

const findParentFoo = closest(el => el.hasAttribute(`data-foo`));

Functions can also be imported from the function file itself:

import closest from '@grrr/utils/functions/closest';