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

fy.js

v0.0.5

Published

一个自用的 JavaScript类型测试库

Downloads

2

Readme

fy Version Badge

一个自用的 JavaScript 类型测试库

安装

$ npm install fy.js
# or
$ yarn add fy.js

API

通用

  • fy.isA (value, type) or fy.isTypeof (value, type)

    测试value的 typeOf 是否为type类型。

  • fy.isDefined (value)

    测试是否定义了value

  • fy.isEmpty (value)

    测试value是否为空。

  • fy.isEqual (value, other)

    测试value是否等于other

  • fy.isHosted (value, host)

    测试value是否由Host托管。

  • fy.isInstance (value, constructor)

    测试value是否为constructor的实例。

  • fy.isNull (value)

    测试value是否 null

  • fy.isUndefined (value)

    测试value是否 undefined

参数

  • fy.isArgs (value)

    测试value是否为参数对象。

  • fy.isArgs.isEmpty (value)

    测试value是否为空参数对象。

数组

  • fy.isArray (value)

    测试value是否为 array

  • fy.isArray.isEmpty (value)

    测试value是否为空 array

  • fy.isArrayLike (value)

    测试value是否是类 array 的对象。

布尔值

  • fy.isBool (value)

    测试value是否为布尔值。

  • fy.isTrue (value)

    测试value是否为true

  • fy.isFalse (value)

    测试value是否为false

日期

  • fy.isDate (value)

    测试value是否为日期。

节点元素

  • fy.isElement (value)

    测试value是否为 html 元素。

错误/异常

  • fy.isError (value)

    测试value是否为error对象。

函数

  • fy.isFn (value)

    测试value是否为函数对象。

数字

  • fy.isNumber (value)

    测试value是否为数字。

  • fy.isInfinite (value)

    测试value是正无穷大还是负无穷大。

  • fy.isDecimal (value)

    测试value是否为十进制数。

  • fy.isDivisibleBy (value, n)

    测试value是否可以被N整除。

  • fy.isInteger (value)

    测试value是否为整数。

  • fy.isMaximum/isMax (value, others[])

    测试value是否是others值中最大的。

  • fy.isMinimum/isMin (value, others[])

    测试value是否是others值中最小的。

  • fy.isNaN (value)

    测试value是否不是 NaN。

  • fy.isEven (value)

    测试value是否为偶数。

  • fy.isOdd (value)

    测试value是否为奇数。

  • fy.isGe (value, other)

    测试value是否大于或等于other

  • fy.isGt (value, other)

    测试value是否大于other

  • fy.isLe (value, other)

    测试value是否小于等于other

  • fy.isLt (value, other)

    测试value是否小于other

  • fy.isWithin (value, start, finish)

    测试value是否在startfinish之间。

对象

  • fy.isObject (value)

    测试value是否为 Object。

正则

  • fy.isRegexp (value)

    测试value是否为正则表达式。

字符串

  • fy.isString (value)

    测试value是否为字符串。

编码

  • fy.isBase64 (value)

    测试value是否为有效的 Base64 编码字符串。

  • fy.isHex (value)

    测试 value 是否为有效的十六进制编码字符串。

Symbols

  • fy.isSymbol (value)

    测试value是否为 ES6 Symbol

大数字

  • fy.isBigint (value)

    测试value是否为 ES 建议的 BigInt