source: node_modules/core-js-pure/internals/engine-is-browser.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 226 bytes
Line 
1'use strict';
2var IS_DENO = require('../internals/engine-is-deno');
3var IS_NODE = require('../internals/engine-is-node');
4
5module.exports = !IS_DENO && !IS_NODE
6 && typeof window == 'object'
7 && typeof document == 'object';
Note: See TracBrowser for help on using the repository browser.