npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

weibozzz

v1.0.5

Published

常用工具库

Downloads

8

Readme

weibozzz

个人常用工具库

npm install weibozzz  -S

支持 require import 导入

utils

工具库

is

module.exports = {
  isArray: isArray,
  isObject: isObject,
  isString: isString,
  isEmptyObject: isEmptyObject,
  isFunc: isFunc,
  isPromise: isPromise,
  canParseJson: canParseJson,
  isTelNum: isTelNum,
  isIOS: isIOS,
  isAndroid: isAndroid
}

usage

import * as is from 'weibozzz/dist/utils/is'

debounce 应用场景

  • 每次 resize/scroll 触发统计事件
  • 文本输入的验证(连续输入文字后发送 AJAX 请求进行验证,验证一次就好)

usage

import debounce from 'weibozzz/dist/utils/debounce'

debounce(fn, wait = 800, now = true)

@return {Function} 添加防抖功能的包装函数

  • fn 要实现函数防抖的原函数
  • wait 延迟时间 默认800ms,单位ms
  • now 是否第一次立即调用后启用防抖 默认 true

throttle 应用场景

  • DOM 元素的拖拽功能实现(mousemove
  • 射击游戏的 mousedown/keydown 事件(单位时间只能发射一颗子弹)
  • 计算鼠标移动的距离(mousemove
  • Canvas 模拟画板功能(mousemove
  • 搜索联想(keyup
  • 监听滚动事件判断是否到页面底部自动加载更多:给 scroll 加了 debounce 后,只有用户停止滚动后,才会判断是否到了页面底部;如果是 throttle 的话,只要页面滚动就会间隔一段时间判断一次

usage

import throttle from 'weibozzz/dist/utils/throttle'

throttle(fn, wait = 800, now = true)

@returns 一个匿名函数包装

  • fn 要被节流的函数
  • period 被节流的时间段默认200ms,单位ms

url

1.parse

解析url字符串为对象

parse (href = window.location.href, isDecode = false)

@returns {object} 解析url字符串的对象

  • href url字符串
  • isDecode 是否需要解码 默认false

2.toUrl

传入要转换的对象,返回url字符串

toUrl (urlObj)

@returns {string} 转换后的url字符串

  • urlObj url对象

3.getQueryString

通过 key 获取 url 参数值

getQueryString (key, isDecode)

@returns {string|null}

  • key 要获取的key
  • isDecode 是否需要解码

storage

本地存储的封装

1.setStorage

带有过期时间和使用限制的本地存储

setStorage (key, value, rest = {}

@returns {{__count: number, value: *, __expired: number}}

  • key {String} 存值的 key
  • value {Any} 存值的 value
  • rest {Object:{__count: 100,__expired:1}} 额外参数,默认存储1天,使用100次,不会自动删除,只是在取值的时候有所扩展

2.getStorage

取值 如果过期或者使用100次后取值为空

@returns {null|value}

getStorage (key, isLimit = false)

  • key {String} 取值key
  • isLimit {Boolean} 是否限制过期和使用次数

compose

整合函数,避免多次嵌套,详细了解看下方链接

https://weibozzz.github.io/#/./docs/Redux/redux_v3.7.2%E6%BA%90%E7%A0%81%E8%AF%A6%E7%BB%86%E8%A7%A3%E8%AF%BB%E4%B8%8E%E5%AD%A6%E4%B9%A0%E4%B9%8Bcompose

@returns {*|*|(function(...[*]): *)|(function(*): *)}

  • funcs {Function} 多个函数作为参数

manipulate

对象的安全操作

getIn

安全取值函数

@returns {*} 返回操作后的值

  • target {Object|Array} 取值目标对象
  • arr {Array} 取值的数组
  • defaultValue {*} 如果取不到的默认值

setIn

安全设置一个对象

@returns {*} 返回操作后的值

  • target {Object|Array} 设置的目标对象
  • arr {Array} 设置以数组表示
  • value {*} 设置的值

deleteIn

安全删除对象的key

@returns {*} 返回操作后的值

  • target {Object|Array} 删除的目标对象
  • arr {Array} 删除以数组表示

dom

hasClass

dom元素是否有某个class

@returns {boolean}

  • dom {HTMLElement} dom元素对象
  • className {String} class名称

setAttribute

设置或者移除dom元素属性

@returns {undefined}

  • dom {HTMLElement} dom元素对象
  • attr {String} 属性
  • value {String} 属性值

fixedBody

设置页面body固定在顶部

@returns {undefined}

looseBody

取消设置页面body固定在顶部

@returns {undefined}