BootsJS is a library dedicated to extending the capabilities of native JavaScript, aiming to address common data structures, methods, and frequently used algorithms that are not natively supported in JavaScript.
npm install boots-jsBeing needed by others is a very happy thing, so there is BootsJS, a powerful JS tool library.
npm:
```
npm install boots-js
yarn:
``
yarn add boots-js
cdn:
``
https://unpkg.com/boots-js@latest/umd/index.js
`javascript`
// Global Import
const BootsJS=require('boots-js/cjs');
BootsJS.ObjectUtils.type(123);
// Import on Demand
const ObjectUtils = require('boots-js/cjs/object-utils');
ObjectUtils.type(123);
`html`
// Global Import
// Import on Demand
`js``
// Global Import
import BootsJS from 'boots-js'
BootsJS.ObjectUtils.type(123);
// Import on Demand
import ObjectUtils from 'boots-js/object-utils'
ObjectUtils.type(123);