Getting Started
Installation
- npm
- Yarn
- pnpm
npm install doumi
yarn add doumi
pnpm add doumi
- ES Modules
- CommonJS
import { isObject } from 'doumi';
isObject({}); // true
const { isObject } = require('doumi');
isObject({}); // true
Without package manager
If you don't want ot use package manager, you can add Javascript at the end of <body>
<script src="https://cdn.jsdelivr.net/npm/doumi/dist/doumi.js"></script>
You can use utility functions using the variable doumi
.
<!doctype html>
<html lang="en">
<head></head>
<body></body>
<script src="https://cdn.jsdelivr.net/npm/doumi/dist/doumi..js"></script>
<script type="text/javascript">
doumi.isObject({}); // true
</script>
</html>
Download
Download the latest version of Doumi at https://www.jsdelivr.com/package/npm/doumi
Check the releases and source code of Doumi at https://github.com/janghye0k/doumi/releases