UNPKG

@planjs/utils

Version:

🔧 Common tools collection

13 lines (11 loc) • 277 B
import getType from './get-type'; var regTyped = /^(Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)Array$/; /** * check typed array * @param value * @category Is */ function isTypedArray(value) { return regTyped.test(getType(value)); } export default isTypedArray;