@multitool-js/objects
v1.2.1
Published
A collection of useful object-oriented methods.
Downloads
7
Readme
Multitool JS / Objects
A collection of useful object-oriented methods.
Each tool or group of tools can be required/imported on its own like this:
// Full require/import
const multitool = require('@multitool-js/objects');
const getProp = multitool.getProp;
// OR
import { getProp } from '@multitool-js/objects';
// Single *tool* require/import
const { getProp } = require('@multitool-js/objects/tools/getProp');
// OR
import { getProp } from '@multitool-js/objects/tools/getProp';