UNPKG
docx4js
Version:
latest (3.3.0)
3.3.0
3.2.20
3.2.19
3.2.18
3.2.17
3.2.16
3.2.15
3.2.14
3.2.13
3.2.12
3.2.11
3.2.9
3.2.8
3.2.7
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.32
3.1.31
3.1.30
3.1.24
3.1.23
3.1.21
3.1.16
3.1.15
3.1.14
3.1.13
3.1.12
3.1.11
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.1
3.1.0
2.0.1
1.4.1
1.4.0
1.3.6
1.3.5
1.3.3
1.3.0
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.1
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.11.0
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
javascript docx parser
github.com/lalalic/docx4js
lalalic/docx4js
docx4js
/
src
/
openxml
/
xlsx
/
document.js
11 lines
(7 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Base
from
"../document"
import
OfficeDocument
from
"./officeDocument"
export
default
class
extends
Base
{
static
ext=
"xlsx"
static
mime=
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
static
OfficeDocument
=
OfficeDocument
}