A small utility belt library by Dominic Tarr providing common functional helpers (e.g., map, filter, reduce, pipe, compose) for Node.js and browsers. Current stable version 3.2.2, released infrequently as a maintenance package. Designed for small projects where lightweight dependencies are preferred. Key differentiator vs. Lodash/Ramda: minimal API surface, no dependencies, zero-config.
npm install ubeltVerified import paths — ran on the pinned version, not inferred.
Demonstrates pipe, filter, and map functions to process an array.
Update package.json dependency to 'ubelt' and change import paths.
Replace with native Promise or async/await patterns.
Use Object.keys/values/entries or a library like Lodash for objects.
Run 'npm install ubelt' to install the latest version.
Use named import: import { map } from 'ubelt'; or use default: const ubelt = require('ubelt'); then ubelt.map().No dependency data recorded yet.