@vangware/microdeprecated

Vangware functional utils library

Usage no npm install needed!

<script type="module">
  import vangwareMicro from 'https://cdn.skypack.dev/@vangware/micro';
</script>

README

@vangware/micro

NPM Version Size License Build Status Coverage Open Issues

Collection of curried functional utils made entirely in TypeScript. Compatible with all modern JS environments:

  • 📦 Node.js.
  • 🦕 Deno.
  • 🌎 Browsers (Chrome, Firefox, Edge, and so on).

Usage

This package can be installed as a dependency or used directly.

Usage as ECMAScript module

In JS or deno:

import { isObject } from "http://cdn.pika.dev/@vangware/micro";

Or in HTML:

<script type="module" src="http://cdn.pika.dev/@vangware/micro"></script>

Usage with local installation

First:

npm i -S @vangware/micro
# or
pnpm i -S @vangware/micro
# or
yarn add @vangware/micro

And then:

import { isObject } from "@vangware/micro";

Documentation

Documentation can be found HERE. It is auto-generated with typedoc based on the JSDocs and the types in the source. Shouldn't be necessary to read this, code editors like VSCode integrate the documentation in the UI.

Changelog

Changelog can be found HERE.

Test coverage

Test coverage can be found HERE.