@x12/common
安装
npm install @x12/common --save
使用
ES7:
const { md5 } = require('@x12/common');
// or
import { md5 } from '@x12/common';
console.log(md5('1'));
具体参数
Methods
() → {int}
getTimestamp获取UNIX标准时间戳
Returns:
UNIX标准时间戳
- Type
- int
(arg) → {boolean}
isBoolean判断是否为布尔值
Parameters:
Name | Type | Description |
---|---|---|
`arg` | * |
任意 |
- Source:
Returns:
是否为布尔值
- Type
- boolean
(obj) → {boolean}
isEmpty判断是否为空
Parameters:
Name | Type | Description |
---|---|---|
`obj` | * |
任意 |
- Source:
Returns:
真为空,假为非空
- Type
- boolean
(arg) → {boolean}
isNumber判断是否为数字
Parameters:
Name | Type | Description |
---|---|---|
`arg` | * |
任意 |
- Source:
Returns:
是否为数字
- Type
- boolean
(obj) → {boolean}
isNumberString判断是否为数字字符串
Parameters:
Name | Type | Description |
---|---|---|
`obj` | * |
任意 |
- Source:
Returns:
是否为数字字符串
- Type
- boolean
(arg) → {boolean}
isObject判断是否为对象
Parameters:
Name | Type | Description |
---|---|---|
`arg` | * |
任意 |
- Source:
Returns:
是否为对象
- Type
- boolean
(arg) → {boolean}
isString判断是否为字符串
Parameters:
Name | Type | Description |
---|---|---|
`arg` | * |
任意 |
- Source:
Returns:
是否为字符串
- Type
- boolean
(str, default) → {object}
JSONparse安全处理 JSON
Parameters:
Name | Type | Description |
---|---|---|
`str` | string |
JSON字符串 |
`default` | object |
默认值 {} |
Returns:
JSON对象
- Type
- object
License
Apache 2.0