You need to sign in or sign up before continuing.
document_provider.web.js 275 Bytes
Newer Older
Patiphan Marak's avatar
Patiphan Marak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
'use strict';

/* eslint-env browser */

/*!
 * Module dependencies.
 */
var BrowserDocument = require('./browserDocument.js');

/**
 * Returns the Document constructor for the current context
 *
 * @api private
 */
module.exports = function() {
  return BrowserDocument;
};