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

@fexd/tools

v0.1.0

Published

fexd tools library

Downloads

5

Readme

辅助工具库

安装

pnpm add @fexd/tools
# or
yarn add @fexd/tools
# or
npm install @fexd/tools

用法示例

import { isArray } from '@fexd/tools'

按需加载

配合 babel-plugin-import 实现按需加载,需将 camel2DashComponentName 配置关闭

// babel.config.js
module.exports = {
  plugins: [
    [
      'babel-plugin-import',
      {
        libraryName: '@fexd/tools',
        camel2DashComponentName: false,
      },
    ],
  ],
}

导出的方法有以下

export {
  CombJudge, // 组合判断器
  EventBus, // EventBus
  FrameProcess, // 帧进程,用于制作动画
  I18n, // i18nshell 工具原型,多语言工具包
  SAS, // [单咨询服务] Single Advisory Service 同一时刻对同一异步请求进行统一等待,不重复发起
  ScrollListener, // 滚动监听
  Tween, // 缓动函数工具
  __, // 自由柯里化
  capitalize, // 首字母大写
  clamp, // 数值范围限定
  classnames, // classnames 库的自实现
  copy, // 复制粘贴
  curry, // 柯里化
  debounce, // 防抖
  defaultFrameProcess, // 默认帧进程
  delay, // 延时 Promise
  first, // 取首个值,可用于对象或数组
  flatten, // 数组拍平
  get, // 无痛取值,同 ?. 算符
  getFormatter, // 格式化工具
  globalThis, // globalThis
  groupBy, // 对数组进行归类处理
  intersection, // 交集
  isAndroid, // 是否安卓环境
  isArray, // 是否数组
  isBoolean, // 是否 Boolean
  isDate, // 是否日期类型
  isDesktop, // 是否桌面端(PC)
  isError, // 是否错误类型
  isExist, // 是否存在(非 undefined / null)
  isFunction, // 是否函数类型
  isIOS, // 是否 iOS 环境
  isMobile, // 是否移动端
  isNaN, // 是否 NaN
  isNull, // 是否 Null
  isNumber, // 是否数字类型
  isObject, // 是否对象(Array 不算)
  isPromiseLike, // 是否 PromiseLike
  isString, // 是否字符串
  isUndefined, // 是否 undefined
  isWKWebview, // 是否 WKWebview 环境
  last, // 取首末尾,可用于对象或数组
  lock, // 自锁函数
  memoize, // 记忆函数
  nextTick, // nextTick 的客户端实现
  pick, // 选值函数
  pickBy, // 自定义选值函数
  pipe, // 管道函数,同 |> 算符
  preloadImage, // 预渲染指定图片
  promiseGuess, // 智能处理 Promise 类型返回值
  qs, // qs 库简易实现
  random, // 随机函数
  run, // 无痛运行
  sample, // 样本函数
  set, // 无痛属性设置
  source, // 在线资源加载
  storage, // storage 存取
  throttle, // 节流
  uniqByKey, // 去重
  url, // url 参数取值
  value, // 值选择,同 ?? 算符
}