From 9ec1b93d0717c1ff312437bfb98843771beb391a Mon Sep 17 00:00:00 2001 From: yurydelendik Date: Mon, 3 Dec 2012 14:02:08 -0800 Subject: [PATCH] Updated Required Browser Features (markdown) --- Required-Browser-Features.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Required-Browser-Features.md b/Required-Browser-Features.md index 76e55c5..e1dec17 100644 --- a/Required-Browser-Features.md +++ b/Required-Browser-Features.md @@ -31,8 +31,7 @@ No emulation of the `addEventListener` method is provided in browsers that do no ## Typed arrays are present -The `Uint8Array`, `Uint16Array`, `Int32Array`, `Float32Array` and `Float64Array` will be replaced -by the artificial TypedArray object if those types are not implemented natively. +The `Uint8Array`, `Uint16Array`, `Int32Array`, `Uint32Array`, `Float32Array` and `Float64Array` will be replaced by the artificial TypedArray object if those types are not implemented natively. Only `subarray`, `buffer`, `set` and `byteLength` are similated. The `subarray` just clones the array. The `set` method is provided to emulate the `Uint8Array`'s `set` method. The emulated typed arrays are slower, don't truncate the items to specific data types and they are memory inefficient.