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

@summer_dream_lab/utils

v1.1.2

Published

<dl> <dt><a href="#module_browser 浏览器帮助方法">browser 浏览器帮助方法</a></dt> <dd></dd> <dt><a href="#module_String 字符串帮助方法">String 字符串帮助方法</a></dt> <dd></dd> <dt><a href="#module_Time 时间公共方法">Time 时间公共方法</a></dt> <dd></dd> </dl>

Downloads

2

Readme

Modules

browser 浏览器帮助方法

  • [browser 浏览器帮助方法](#module_browser 浏览器帮助方法)
    • [~isWeiXin 判断是否微信浏览器()](#module_browser 浏览器帮助方法..isWeiXin 判断是否微信浏览器) ⇒ Boolean
    • [~isMobile 判断是否移动端浏览器()](#module_browser 浏览器帮助方法..isMobile 判断是否移动端浏览器) ⇒ Boolean

browser 浏览器帮助方法~isWeiXin 判断是否微信浏览器() ⇒ Boolean

Kind: inner method of [browser 浏览器帮助方法](#module_browser 浏览器帮助方法)

browser 浏览器帮助方法~isMobile 判断是否移动端浏览器() ⇒ Boolean

Kind: inner method of [browser 浏览器帮助方法](#module_browser 浏览器帮助方法)

String 字符串帮助方法

  • [String 字符串帮助方法](#module_String 字符串帮助方法)
    • [~delHtmlTag 删除html标签(html)](#module_String 字符串帮助方法..delHtmlTag 删除html标签) ⇒ String
    • [~unescapeHTML 把转译字符串转为html(str)](#module_String 字符串帮助方法..unescapeHTML 把转译字符串转为html) ⇒ String
    • [~getRequest 获取url参数(decode)](#module_String 字符串帮助方法..getRequest 获取url参数) ⇒ Array
    • [~wordArr 将内容按照文字或者单词分割成数组(str, reg)](#module_String 字符串帮助方法..wordArr 将内容按照文字或者单词分割成数组) ⇒ Array
    • [~wordLength 计算单词数量(str, reg)](#module_String 字符串帮助方法..wordLength 计算单词数量) ⇒ Number

String 字符串帮助方法~delHtmlTag 删除html标签(html) ⇒ String

Kind: inner method of [String 字符串帮助方法](#module_String 字符串帮助方法)
Returns: String - 去除标签后的结果

| Param | Type | Description | | --- | --- | --- | | html | String | html字符串 |

String 字符串帮助方法~unescapeHTML 把转译字符串转为html(str) ⇒ String

Kind: inner method of [String 字符串帮助方法](#module_String 字符串帮助方法)
Returns: String - 处理完成后的字符串

| Param | Type | Description | | --- | --- | --- | | str | String | 字符串 |

String 字符串帮助方法~getRequest 获取url参数(decode) ⇒ Array

Kind: inner method of [String 字符串帮助方法](#module_String 字符串帮助方法)

| Param | Type | Description | | --- | --- | --- | | decode | String | 是否解码 |

String 字符串帮助方法~wordArr 将内容按照文字或者单词分割成数组(str, reg) ⇒ Array

Kind: inner method of [String 字符串帮助方法](#module_String 字符串帮助方法)
Returns: Array - 分割后的结果

| Param | Type | Description | | --- | --- | --- | | str | String | 需要处理的字符串 | | reg | RegExp | 正则 |

String 字符串帮助方法~wordLength 计算单词数量(str, reg) ⇒ Number

Kind: inner method of [String 字符串帮助方法](#module_String 字符串帮助方法)
Returns: Number - 单词数量

| Param | Type | Description | | --- | --- | --- | | str | String | 文本 | | reg | RegExp | 正则 |

Time 时间公共方法

  • [Time 时间公共方法](#module_Time 时间公共方法)
    • [~时间对象](#module_Time 时间公共方法..时间对象)
      • [new 时间对象(server, client)](#new_module_Time 时间公共方法..时间对象_new)
    • [~isOverDate 是否超过目标时间(date)](#module_Time 时间公共方法..isOverDate 是否超过目标时间) ⇒ Boolean
    • [~isBetweenDate 是否在时间区间内(date1, date2)](#module_Time 时间公共方法..isBetweenDate 是否在时间区间内) ⇒ Boolean
    • [~_isOverDate 是否超过目标时间(date, diff)](#module_Time 时间公共方法.._isOverDate 是否超过目标时间) ⇒ Boolean
    • [~_isBetweenDate 是否在时间区间内(date1, date2, diff)](#module_Time 时间公共方法.._isBetweenDate 是否在时间区间内) ⇒ Boolean
    • [~isDateIntersection 时间是否有交集(start1, end1, start2, end2)](#module_Time 时间公共方法..isDateIntersection 时间是否有交集) ⇒ Booklean

Time 时间公共方法~时间对象

Kind: inner class of [Time 时间公共方法](#module_Time 时间公共方法)

new 时间对象(server, client)

| Param | Type | Description | | --- | --- | --- | | server | String | Date | 服务器时间 default=Moment() | | client | String | Date | 本地时间 default=Moment() |

Time 时间公共方法~isOverDate 是否超过目标时间(date) ⇒ Boolean

Kind: inner method of [Time 时间公共方法](#module_Time 时间公共方法)

| Param | Type | Description | | --- | --- | --- | | date | String | Date | 目标时间 |

Time 时间公共方法~isBetweenDate 是否在时间区间内(date1, date2) ⇒ Boolean

Kind: inner method of [Time 时间公共方法](#module_Time 时间公共方法)

| Param | Type | Description | | --- | --- | --- | | date1 | String | Date | 日期1 | | date2 | String | Date | 日期2 |

Time 时间公共方法~_isOverDate 是否超过目标时间(date, diff) ⇒ Boolean

Kind: inner method of [Time 时间公共方法](#module_Time 时间公共方法)

| Param | Type | Description | | --- | --- | --- | | date | String | Date | 目标时间 | | diff | Number | 时间偏移量 default=0 |

Time 时间公共方法~_isBetweenDate 是否在时间区间内(date1, date2, diff) ⇒ Boolean

Kind: inner method of [Time 时间公共方法](#module_Time 时间公共方法)

| Param | Type | Description | | --- | --- | --- | | date1 | String | Date | 日期1 | | date2 | String | Date | 日期2 | | diff | Number | 时间偏移量 default=0 |

Time 时间公共方法~isDateIntersection 时间是否有交集(start1, end1, start2, end2) ⇒ Booklean

Kind: inner method of [Time 时间公共方法](#module_Time 时间公共方法)

| Param | Type | Description | | --- | --- | --- | | start1 | String | Date | 时间1开始时间 | | end1 | String | Date | 时间1结束时间 | | start2 | String | Date | 时间2开始时间 | | end2 | String | Date | 时间2结束时间 |