UNPKG

ut2

Version:

一个现代 JavaScript 实用工具库。[点击查看在线文档]。

13 lines (10 loc) 273 B
import isLength from '../isLength.js'; import toNumber from '../toNumber.js'; function isIndex(value) { var type = typeof value; if (type === 'string' && value) { value = toNumber(value); } return isLength(value); } export { isIndex as default };