< Summary

Information
Class: src/XLSXasJSON.jl
Assembly: Default
File(s): src/XLSXasJSON.jl
Tag: 40_3060321334
Line coverage
N/A
Covered lines: 0
Uncovered lines: 0
Coverable lines: 0
Total lines: 23
Line coverage: N/A
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

File(s)

src/XLSXasJSON.jl

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

Methods/Properties