Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
feat(index.js): export text class
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Aug 6, 2016
1 parent bf142ae commit 683ec97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
const Document = require('./document')
const Node = require('./node')
const Attribute = require('./attribute')
const Text = require('./text')

/**
* @namespace node-html-light
*/
module.exports = {
Document: Document,
Attr: Attribute,
Node: Node
Node: Node,
Text: Text
}

0 comments on commit 683ec97

Please sign in to comment.