Skip to content

Commit 80345b1

Browse files
author
Ben Baumgold
committed
add default is_javascript_safe() function
1 parent 965f404 commit 80345b1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "TableView"
22
uuid = "40c74d1a-b44c-5b06-a7c1-6cbea58ea978"
3-
version = "0.7.0"
3+
version = "0.7.1"
44

55
[deps]
66
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/TableView.jl

+4
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ function _showtable_async!(w, schema, types, rows, tablelength, id, options, opt
274274
onimport(w, handler)
275275
end
276276

277+
function _is_javascript_safe(x)
278+
false
279+
end
280+
277281
function _is_javascript_safe(x::Integer)
278282
min_safe_int = -(Int64(2)^53-1)
279283
max_safe_int = Int64(2)^53-1

0 commit comments

Comments
 (0)