Skip to content

Commit e858322

Browse files
authored
Remove outdated BigInt support FIXME from JSTypedArray (#187)
The linked issue has already been closed, so this comment doesn't seem to be relevant.
1 parent 34bf9e1 commit e858322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValu
1010
static var typedArrayClass: JSFunction { get }
1111
}
1212

13-
/// A wrapper around all JavaScript [TypedArray](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) classes that exposes their properties in a type-safe way.
14-
/// FIXME: [BigInt-based TypedArrays are currently not supported](https://github.com/swiftwasm/JavaScriptKit/issues/56).
13+
/// A wrapper around all JavaScript [TypedArray](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray)
14+
/// classes that exposes their properties in a type-safe way.
1515
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement {
1616
public class var constructor: JSFunction { Element.typedArrayClass }
1717
public var jsObject: JSObject

0 commit comments

Comments
 (0)