This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __stopAllTimers | |
| __timers | |
| _actAsIfLocationReloadCalled | |
| _activeNodeIterators | |
| _activeNodeIteratorsMax | |
| _adoptNodes | |
| _agentOptions | |
| _appendCommentNode | |
| _appendElement | |
| _attached |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************************/ | |
| 'use strict'; | |
| /******************************************************************************/ | |
| const jsdom = require('jsdom').jsdom; | |
| const window = jsdom('').defaultView; | |
| const nomenclatureTerms = new Set(); | |
| const nomenclatureChains = new Set(); | |
| const globs = new Map(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window | |
| window["alert"] | |
| window["alert"]["length"] | |
| window["alert"]["name"] | |
| window["AnalyserNode"] | |
| window["AnalyserNode"]["length"] | |
| window["AnalyserNode"]["name"] | |
| window["AnalyserNode"]["prototype"] | |
| window["AnalyserNode"]["prototype"]["constructor"] | |
| window["AnalyserNode"]["prototype"]["fftSize"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __defineGetter__ | |
| __defineSetter__ | |
| __lookupGetter__ | |
| __lookupSetter__ | |
| __proto__ | |
| -moz-animation | |
| -moz-animation-delay | |
| -moz-animation-direction | |
| -moz-animation-duration | |
| -moz-animation-fill-mode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window | |
| window["$_"] | |
| window["$"] | |
| window["$"]["arguments"] | |
| window["$"]["caller"] | |
| window["$"]["length"] | |
| window["$"]["name"] | |
| window["$"]["toString"] | |
| window["$"]["toString"]["arguments"] | |
| window["$"]["toString"]["caller"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __defineGetter__ | |
| __defineSetter__ | |
| __lookupGetter__ | |
| __lookupSetter__ | |
| __proto__ | |
| $ | |
| $_ | |
| $' | |
| $& | |
| $` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __dirname | |
| __filename | |
| global | |
| global["Array"] | |
| global["Array"]["arguments"] | |
| global["Array"]["caller"] | |
| global["Array"]["from"] | |
| global["Array"]["from"]["length"] | |
| global["Array"]["from"]["name"] | |
| global["Array"]["isArray"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __COMPAT_LAYER | |
| __defineGetter__ | |
| __defineSetter__ | |
| __dirname | |
| __filename | |
| __lookupGetter__ | |
| __lookupSetter__ | |
| __proto__ | |
| _addHeaderLine | |
| _addHeaderLines |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************************/ | |
| 'use strict'; | |
| /******************************************************************************/ | |
| const nomenclatureTerms = new Set(); | |
| const nomenclatureChains = new Set(); | |
| const globs = new Map(); | |
| const processedObjects = new Set(); | |
| /******************************************************************************/ | |
| if (typeof window !== 'undefined') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************************/ | |
| 'use strict'; | |
| /******************************************************************************/ | |
| const fs = require('fs'); | |
| const pth = require('path'); | |
| const rl = require('readline'); | |
| const urlMod = require('url'); | |
| const parseURL = urlMod.parse; | |
| const formatURL = urlMod.format; |