mirror of
https://github.com/foliojs/pdfkit.git
synced 2025-12-08 20:15:54 +00:00
14 lines
373 B
CoffeeScript
14 lines
373 B
CoffeeScript
class Table
|
|
constructor: (@file) ->
|
|
@tag ?= @constructor.name.replace('Table', '').toLowerCase()
|
|
info = @file.directory.tables[@tag]
|
|
@exists = !!info
|
|
|
|
if info
|
|
{@offset, @length} = info
|
|
@parse @file.contents
|
|
|
|
parse: ->
|
|
# implemented by subclasses
|
|
|
|
module.exports = Table |