source:
node_modules/core-js-pure/internals/engine-is-browser.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 226 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | 'use strict'; |
2 | var IS_DENO = require('../internals/engine-is-deno'); | |
3 | var IS_NODE = require('../internals/engine-is-node'); | |
4 | ||
5 | module.exports = !IS_DENO && !IS_NODE | |
6 | && typeof window == 'object' | |
7 | && typeof document == 'object'; |
Note:
See TracBrowser
for help on using the repository browser.