0.0.2 • Published 2 years ago

hikidashi v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Hikidashi

Convenient, simple, functional JavaScript. Like hikidashi boxes.

NPM | Docs | Github

Hikidashi is released under the MIT license & supports modern Node and browser environments.

Quick install

Use any of the following.

$ npm i hikidashi
$ yarn add hikidashi
$ pnpm i hikidashi

Note: add --save if you are using npm < 5.0.0

Using ESM: smaller bundle sizes.

// Load only what you need
import map from 'hikidashi/unsafe/array/mapip.mjs';
import add from 'hikidashi/safe/math/add.mjs';

const series = map(Array(10).fill(0), add);
console.log(series); // [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Using a single require:

const { unsafe } = require('hikidashi');

const series = unsafe.mapip([1, 2, 3, 4], e => e * 2);
console.log(series); // [2, 4, 6, 8]

Using exported paths:

const safe = require('hikidashi/safe');

const series = safe.filter([true, false, true])
console.log(series); // [true, true]

Why Hikidashi

We like going back to basics with convenient, simple, functional JavaScript. Hikidashi is a one-stop-shop for all your daily array, object, string, and mathematical needs.

  • Easy to Use, simple API based on common sense.
  • Fast, lightweight, and built for the new age. (We're usually faster than every alternative, see our benchmarks!)
  • Modular, bundler-friendly file structure lets you use only what you need.