1.1.7 • Published 1 year ago

doumi v1.1.7

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

NPM Version MIT License Test Status

doumi

The Doumi is a utility library for JavaScript that provides support for the usual functional suspects (forEach, on, debounce, isEqual...)

Installation

npm install doumi

In Node.js:

var doumi = require('doumi');

doumi.isArray([]); // true

In ESM:

import { isArray } from 'doumi';

doumi.isArray([]); // true

in Browser:

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body></body>
  <script src="doumi.js"></script>
  <script>
    doumi.isArray([]); // true
  </script>
</html>

See the package source for more details.

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.0.2

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.1.0

1 year ago