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

type-detector-js

v1.0.1

Published

获取和判断数据类型的 JavaScript 工具库

Downloads

8

Readme

安装使用

CDN 引入

<!-- unpkg CDN -->
<script src="https://unpkg.com/type-detector-js"></script>

<!-- jsdelivr CDN -->
<script src="https://cdn.jsdelivr.net/npm/type-detector-js"></script>

NPM 安装

/** 安装 */
npm i type-detector-js -S

/** 通过 require 引入 */
const TD = require( "type-detector-js" );

/** 
 * 通过 import 引入 
 * 注:需要在 package.json 中添加 "type": "module"
 */
import TD from "type-detector-js/dist/type-detector.esm.mjs";

基本用法

const isString = TD( "abc" ).isString();
const isNumber = TD( "abc" ).isNumber();
const type = TD( "abc" ).type();

/** true */
console.log( isString );

/** false */
console.log( isNumber );

/** string */
console.log( type );

方法列表

方法详述

功能:判断是否为函数。

/** true */
TD( function test () {} ).isFunction();
TD( function * test () {} ).isFunction();
TD( () => {} ).isFunction();

默认情况下,不会将 class 类判定为函数。

/** false */
TD( class Test {} ).isFunction();

如果希望 isFunction 能包含 class 类,可传入一个 true 参数:

/** true */
TD( class Test {} ).isFunction( true );

功能:判断是否为字符串。

/** true */
TD( "abc" ).isString();
TD( String( "abc" ) ).isString();

功能:判断是否为数组。

/** true */
TD( [ 1, 2 ] ).isArray();
TD( Array( 1, 2 ) ).isArray();

功能:判断是否为布尔值。

/** true */
TD( true ).isBoolean();
TD( Boolean( true ) ).isBoolean();

功能:判断是否为 Symbol

/** true */
TD( Symbol() ).isSymbol();
TD( Symbol.for( "abc" ) ).isSymbol();

功能:判断是否为 BigInt

/** true */
TD( 10n ).isBigInt();
TD( BigInt( 10 ) ).isBigInt();

功能:判断是否为 undefined

/** true */
TD( undefined ).isUndefined();

功能:判断是否为 null

/** true */
TD( null ).isNull();

功能:判断是否为 nullundefined

/** true */
TD( null ).isNil();
TD( undefined ).isNil();

功能:判断是否为数字。

/** true */
TD( 10 ).isNumber();
TD( Number( 20 ) ).isNumber();

功能:判断是否为整数( 必须是安全整数,即在 -2^53 到 2^53 之间的整数 )。

/** true */
TD( 10 ).isInt();
TD( 10.00 ).isInt();
TD( Number( 20 ) ).isInt();

功能:判断是否为浮点数( 必须在安全整数范围内,即在 -2^53 到 2^53 之间的数值 )。

/** true */
TD( 10.01 ).isFloat();
TD( Number( -20.2 ) ).isFloat();

功能:判断是否为 NaN

/** true */
TD( NaN ).isNaN();

功能:判断是否为一个有限数。

/** true */
TD( 20 ).isFinite();

/** false */
TD( Infinity ).isFinite();
TD( -Infinity ).isFinite();
TD( NaN ).isFinite();

功能:判断是否为 Set

/** true */
TD( new Set() ).isSet();

功能:判断是否为 WeakSet

/** true */
TD( new WeakSet() ).isWeakSet();

功能:判断是否为 Map

/** true */
TD( new Map() ).isMap();

功能:判断是否为 WeakMap

/** true */
TD( new WeakMap() ).isWeakMap();

功能:判断是否为纯对象。

注:只有通过 "字面量形式或 Object 构造函数" 创建的对象才会判定为纯对象。

/** true */
TD( {} ).isPlainObject();
TD( Object() ).isPlainObject();

功能:判断是否为对象。

注:只要 typeof 返回 object 的都判定为对象。

/** true */
TD( {} ).isObject();
TD( [] ).isObject();
TD( null ).isObject();

功能:判断是否为 DOM 元素。

注:必须是单个且页面中真实存在的元素。

/** true */
TD( document.querySelector( "html" ) ).isElement();
TD( document.getElementById( "target" ) ).isElement();
TD( document.getElementsByTagName( "div" )[ 0 ] ).isElement();

/** false */
TD( document.querySelectorAll( "div" ) ).isElement();
TD( document.getElementsByTagName( "div" ) ).isElement();

功能:判断是否为 window 对象。

注:只能用于浏览器环境,在 node 环境中将直接返回 false

/** true */
TD( window ).isWindow();

功能:判断是否为 Promise

/** true */
TD( new Promise( () => {} ) ).isPromise();

功能:判断是否为 class 类。

/** true */
TD( class Test {} ).isClass();

功能:判断是否为 Blob

注:只能用于浏览器环境,在 node 环境中将直接返回 false

/** true */
TD( new Blob( [ "123" ], { type: "text/html" } ) ).isBlob();

功能:判断是否为 ArrayBuffer

/** true */
TD( new ArrayBuffer( 8 ) ).isArrayBuffer();

功能:判断是否为 Buffer

注:只能用于 node 环境,在浏览器环境中将直接返回 false

/** true */
TD( Buffer.from( "test" ) ).isBuffer();

功能:判断是否为空的纯对象。

/** true */
TD( {} ).isEmptyPlainObject();

/** false */
TD( { a: 1 } ).isEmptyPlainObject();

功能:判断是否为空数组。

/** true */
TD( [] ).isEmptyArray();

/** false */
TD( [ 1, 2 ] ).isEmptyArray();

功能:判断是否为空字符串。

/** true */
TD( "" ).isEmptyString();

/** false */
TD( " " ).isEmptyString();
TD( "test" ).isEmptyString();

功能:判断是否为只包含纯对象的数组。

/** true */
TD( [ {}, {}, {} ] ).isArrayOnlyIncludePlainObject();

/** false */
TD( [ {}, 1, true ] ).isArrayOnlyIncludePlainObject();

功能:获取数据类型。

/** array */
TD( [] ).type();

/** object */
TD( {} ).type();

/** string */
TD( "" ).type();

/** number */
TD( 10 ).type();

浏览器兼容

| Chrome | Firefox | Edge | Safari | IE | | --- | --- | --- | --- | --- | | 110+ | 110+ | 110+ | 15+ | 不支持 |