Index: src/typedarray.js |
diff --git a/src/typedarray.js b/src/typedarray.js |
index 65659147ee7777cf1e8bc69196d4fc09a4beee89..61329df928261007c51a3e7489d3378de9f826cc 100644 |
--- a/src/typedarray.js |
+++ b/src/typedarray.js |
@@ -312,7 +312,7 @@ function TypedArraySet(obj, offset) { |
} |
function TypedArrayGetToStringTag() { |
- if (!%IsTypedArray(this)) return; |
+ if (!%_IsTypedArray(this)) return; |
var name = %_ClassOf(this); |
if (IS_UNDEFINED(name)) return; |
return name; |