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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hongfangze-string

v1.0.2

Published

comm.string

Readme

字符串的操作

介绍

字符串操作

/**
 * 去除前后空格
 * @param {string} str
 * @return {*}  {string}
 */
export declare const trim: (str: string) => string;
/**
 * 去除前面的空格
 * @param {string} str
 * @return {*}  {string}
 */
export declare const ltrim: (str: string) => string;
/**
 * 去除后面的空格
 * @param {string} str
 * @return {*}  {string}
 */
export declare const rtrim: (str: string) => string;
/**
 * 填充(前置)字符串,一般用于流水号前面的占位
 * @param {string} str 原始字符串
 * @param {number} [len] 填充后的总位数长度
 * @param {string} [fixText] 需要填充(前置)的字符
 * @return {string} 填充后的新字符串
 */
export declare const prefix: (str: string, len?: number, fixText?: string) => string;
/**
 * 字符串开头是否包含指定字符串
 * @param {string} str 要检查的字符串
 * @param {string} includeStr 要包含的字符
 * @return {*}  {boolean}
 */
export declare const startWith: (str: string, includeStr: string) => boolean;
/**
 * 字符串结尾是否包含指定字符串
 * @param {string} str 要检查的字符串
 * @param {string} includeStr 要包含的字符
 * @return {*}  {boolean}
 */
export declare const endWith: (str: string, includeStr: string) => boolean;
/**
 * 格式化字符串
 * @param {string} str 原始字符串
 * - 可以使用{0} {1}这种下标方式占位,对应replace参数传入string[],依次替换下标数据
 * - 也可以使用{name} {age}这种变量名占位,对应replace参数传入Record<string, string>的JSON,将匹配到的变量名进行替换
 * @param {(string[] | Record<string, string>)} replace 需要被替换的数据源
 * @return {*}  {string}
 */
export declare const format: (str: string, replace: string[] | Record<string, string>) => string;
/**
 * 压缩字符串
 * @param {string} str 待压缩的字符串
 * @return {string} 压缩后的字符串
 */
export declare const compress: (str: string) => string;
/**
 * 解压缩字符串
 * @param {string} str 待解压缩的字符串
 * @return {string} 解压缩后的字符串
 */
export declare const decompress: (str: string) => string;
/**
 * 字符串是否包含指定的字符串
 * @param {string} str 需要检验的字符串
 * @param {string} include 被包含的字符串
 * @return {*}  {boolean}
 */
export declare const include: (str: string, include: string) => boolean;

版本迭代记录

2025-04-11 v1.0.2

  • 被移除后更名发布。

2024-06-12 v0.1.0

  • 增加字符串压缩和解压缩函数