UNPKG

atom-nuclide

Version:

A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.

26 lines (19 loc) 1.11 kB
/* * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the license found in the LICENSE file in * the root directory of this source tree. */ /** * This is the set of modules that are "built-in" and never need to be required. */ module.exports = new Set(['Array', 'Boolean', 'Date', 'Error', 'Function', 'Infinity', 'JSON', 'Math', 'Number', 'Object', 'Promise', 'RegExp', 'String', 'Symbol', 'arguments', 'global', 'isFinite', 'isNaN', 'parseFloat', 'parseInt', 'undefined', 'console', // Browser built ins. 'alert', 'clearInterval', 'clearTimeout', 'confirm', 'decodeURI', 'decodeURIComponent', 'document', 'encodeURI', 'encodeURIComponent', 'escape', 'indexedDB', 'location', 'localStorage', 'open', 'performance', 'prompt', 'screen', 'sessionStorage', 'setInterval', 'setTimeout', 'window', 'Option', // Module built ins. 'exports', 'module', 'require', // Common dev flag. '__DEV__', // Jest/Jasmine build ins. 'afterEach', 'beforeEach', 'describe', 'expect', 'it', 'jest', 'waitsForPromise', 'jasmine', 'spyOn', 'mockRunTimersOnce']);