boots-js

logo

Being needed by others is a very happy thing, so there is BootsJS, a powerful JS tool library.

EN | 中文

Installation

npm:

npm install boots-js

yarn:

yarn add boots-js

cdn:

None yet

Usage

CommonJS

// Global Import
const BootsJS=require('boots-js');
BootsJS.ObjectTool.type(123);

// Import on Demand
const ObjectTool = require('boots-js/object-tool');
ObjectTool.type(123);

Browser

None yet

ES6 Module

// Global Import
import BootsJS from 'boots-js'
BootsJS.ObjectTool.type(123); //'Number'

// Import on Demand
import * as ObjectTool from 'boots-js/object-tool' // Es6 Module
ObjectTool.type(123); //'Number'

All Features

Click to view

Contribute

Click to view