< Summary

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

Feature is only available for sponsors

Upgrade to PRO version

File(s)

src/XLSXasJSON.jl

#LineLine coverage
 71module 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")
 18include("postprocess.jl")
 19
 20export JSONWorkbook, JSONWorksheet,
 21        hassheet, sheetnames,
 22        xlsxpath
 23end # module

Methods/Properties