< Summary

Class:src/XLSXasJSON.jl
Assembly:Default
File(s):src/XLSXasJSON.jl
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:20
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0
Tag:43_456648716

File(s)

src/XLSXasJSON.jl

#LineLine coverage
 51module XLSXasJSON
 2
 3using Printf, REPL
 4using JSON
 5using JSONPointer
 6using JSONPointer: Pointer
 7using XLSX
 8using OrderedCollections
 9
 10include("index.jl")
 11include("jsonpointer.jl")
 12include("worksheet.jl")
 13include("workbook.jl")
 14include("writer.jl")
 15
 16export JSONWorkbook, JSONWorksheet,
 17        hassheet, sheetnames,
 18        xlsxpath
 19
 20end # module

Methods/Properties