summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/document_provider.web.js
blob: 4223fc39750d7ddd7bf38acf406a179bfc3689eb (plain)
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;
};