Skip to content

Commit 6389d8e

Browse files
authored
Merge pull request #195 from code-hike/safari-playground
Fix Safari 14 playground
2 parents b9dbefe + b9b92cd commit 6389d8e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/mdx/src/remark/to-estree.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ export function valueToEstree(
145145
}
146146
}
147147
if (
148-
value instanceof BigInt64Array ||
149-
value instanceof BigUint64Array ||
148+
// https://github.com/code-hike/codehike/issues/194
149+
// value instanceof BigInt64Array ||
150+
// value instanceof BigUint64Array ||
150151
value instanceof Float32Array ||
151152
value instanceof Float64Array ||
152153
value instanceof Int8Array ||

0 commit comments

Comments
 (0)