const getValueType = (value) => { const originType = Object.prototype.toString.call(value) const spaceIndex = originType.indexOf(' ') return originType.slice(spaceIndex + 1, -1).toLowerCase() }