document.js 160 B

123456
  1. if (typeof define === "function" && define.amd)
  2. define(function () {
  3. return document;
  4. });
  5. else if (typeof exports === "object")
  6. module.exports = document;