(value)
| 741 | |
| 742 | var TYPED_ARRAY_REGEXP = /^\[object (Uint8(Clamped)?)|(Uint16)|(Uint32)|(Int8)|(Int16)|(Int32)|(Float(32)|(64))Array\]$/; |
| 743 | function isTypedArray(value) { |
| 744 | return TYPED_ARRAY_REGEXP.test(toString.call(value)); |
| 745 | } |
| 746 | |
| 747 | |
| 748 | var trim = function(value) { |