summaryrefslogtreecommitdiff
path: root/client/node_modules/domino/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/node_modules/domino/lib/index.js')
-rw-r--r--client/node_modules/domino/lib/index.js79
1 files changed, 0 insertions, 79 deletions
diff --git a/client/node_modules/domino/lib/index.js b/client/node_modules/domino/lib/index.js
deleted file mode 100644
index 47c7584..0000000
--- a/client/node_modules/domino/lib/index.js
+++ /dev/null
@@ -1,79 +0,0 @@
-"use strict";
-var DOMImplementation = require('./DOMImplementation');
-var HTMLParser = require('./HTMLParser');
-var Window = require('./Window');
-
-exports.createDOMImplementation = function() {
- return new DOMImplementation(null);
-};
-
-exports.createDocument = function(html, force) {
- // Previous API couldn't let you pass '' as a document, and that
- // yields a slightly different document than createHTMLDocument('')
- // does. The new `force` parameter lets you pass '' if you want to.
- if (html || force) {
- var parser = new HTMLParser();
- parser.parse(html || '', true);
- return parser.document();
- }
- return new DOMImplementation(null).createHTMLDocument("");
-};
-
-exports.createIncrementalHTMLParser = function() {
- var parser = new HTMLParser();
- /** API for incremental parser. */
- return {
- /** Provide an additional chunk of text to be parsed. */
- write: function(s) {
- if (s.length > 0) {
- parser.parse(s, false, function() { return true; });
- }
- },
- /**
- * Signal that we are done providing input text, optionally
- * providing one last chunk as a parameter.
- */
- end: function(s) {
- parser.parse(s || '', true, function() { return true; });
- },
- /**
- * Performs a chunk of parsing work, returning at the end of
- * the next token as soon as shouldPauseFunc() returns true.
- * Returns true iff there is more work to do.
- *
- * For example:
- * ```
- * var incrParser = domino.createIncrementalHTMLParser();
- * incrParser.end('...long html document...');
- * while (true) {
- * // Pause every 10ms
- * var start = Date.now();
- * var pauseIn10 = function() { return (Date.now() - start) >= 10; };
- * if (!incrParser.process(pauseIn10)) {
- * break;
- * }
- * ...yield to other tasks, do other housekeeping, etc...
- * }
- * ```
- */
- process: function(shouldPauseFunc) {
- return parser.parse('', false, shouldPauseFunc);
- },
- /**
- * Returns the result of the incremental parse. Valid after
- * `this.end()` has been called and `this.process()` has returned
- * false.
- */
- document: function() {
- return parser.document();
- },
- };
-};
-
-exports.createWindow = function(html, address) {
- var document = exports.createDocument(html);
- if (address !== undefined) { document._address = address; }
- return new Window(document);
-};
-
-exports.impl = require('./impl');