1.0.13 • Published 3 years ago

@agile-code/core v1.0.13

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

agile-code javascript 敏捷开发工具库

前端项目常用工具函数,方便快捷.

自定义实现包括函数相关、数组相关、对象相关,字符串等工具函数, 类似流行的工具函数库 lodash;

Usage

es5 使用方式

const $core = require("agile-code/core");
// 生成1-10随机数
$core.random(1, 10);

es6 使用方式

import { random } from "agile-code/core";
// 生成1-10随机数
random(1, 10);