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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@qietuzi/utils

v0.0.11

Published

A js library for common utils

Readme

@qietuzi/utils

A js library for common utils,一个常用工具库

Install (安装)

npm i @qietuzi/utils --save

arr

a utils to extends window.location

import { arr } from "@qietuzi/utils";
/* 
    @name       findItem
    @desc       arr findItem
    @params     
                arr     Array<any>
                key     string
                val     any
    @return     any     arr item
*/
arr.findItem();

env

a utils to judge browser environment

import { env } from "@qietuzi/utils";

env.system();
// 'unknow' | 'windows' | 'macos' | 'linux' | 'android' | 'ios'

env.systemVersion();

env.engine();
// 'unknow' | 'webkit' | 'gecko' | 'presto' | 'trident'

env.engineVersion();

env.supporter();
// 'unknow' | 'edge' | 'opera' | 'chrome' | 'safari' | 'firefox' | 'opera' | 'iexplore'

env.supporterVersion();

env.platform();

env.shell();
// 'none' | 'wechat' | 'qq' | 'uc' | '360' | '2345' | 'sougou' | 'liebao' | 'maxthon'

env.shellVersion();

env.getEnvs();
// return all

location

a utils to extends window.location

import { location } from "@qietuzi/utils";
// avoid confilct with window.location
import { location as _locltion } from "@qietuzi/utils";

/* 
    @name       getParam
    @desc       getParam
    @params     
                key     string
                url     string    string[window.location.href]
    @return     string
*/
_locltion.getParam();
/* 
    @name       getParams
    @desc       getParams
    @params     url     string    string[window.location.href]
    @return     {
                    [key: string]: string
                }
    waring: when route is hash route, the url params may have # and strings after #
*/
_locltion.getParams();
/* 
    @name       listParams
    @desc       listParams some times sign needs to keep the sort
    @params     url     string     string[window.location.href]
    @return     Array<{
                    key: string,
                    val: string
                }>
*/
_locltion.listParams();

lang

a utils to judge character's language.

import { lang } from "@qietuzi/utils";
// 获取单个字符所属的语言类型(详情)
// get language of a single character
getLang(s: string): string
// 获取字符串中包含的语言类型
// get a languages list of a string
getLangs(str: string): Array<string>
// 获取字符串中每一个字符的语言类型
// get each character's languages list of a string
getEachLangs(str: string): Array<string>

number

import { number } from "@qietuzi/utils";
/*
// 数字,数字字符串前补零
// number,number string zero fill
// zeroFill(9)      =>  '09'
// zeroFill(9, 3)   =>  '009'
// warn:最大不可超过2^32,否则会溢出错误
*/
zeroFill(val: number | string, num: number = 2):string