@mrrs878/js-library
v0.0.14
Published
<!-- * @Author: [email protected] * @Date: 2020-12-15 23:23:11 * @LastEditTime: 2021-08-03 19:20:05 * @LastEditors: [email protected] * @Description: In User Settings Edit * @FilePath: d:\Data\Personal\MyPro\js_library\README.md -->
Downloads
2
Readme
jsLibrary
轮子,自用js函数库,参(抄)照(袭)ahooks
native
aop.js,包含
before
和after
函数,分别目标函数之前/之后执行函数Chain.js,职责链模式
PublishSubscribe.js, 发布订阅模式
react
useRequest.js,发送异步请求hook,功能包括自动执行/返回请求状态/重复执行
useDocumentTitle.js,更改
document.title
hookuseInputValue.js,
input
双向绑定useWindowScroll.js,
window.scroll
事件发生时执行目标函数
单元测试
describe('xxx', () => {
// 测试函数是否定义
it('should be defined', () => {
expect(xxx).toBeDefined();
});
// 测试函数是否被调用
it('should be called', () => {
expect(xxx).toBeCalled();
});
});