1.0.3 • Published 6 years ago

tf-type v1.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

JS 类型判断

// 引入
import {
  isType,
  isObject,
  isString,
  isArray,
  isFunction,
  isNumber,
  isRegExp,
  isDate,
  isElement,
  isBoolean
} from "tf-type";

// 或
import * as Type from "tf-type";
// let isObject = Type.isObject;

// 使用
isObject({ a: "aaa" });
isArray([1, 2, 3]);
isBoolean(true);
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago