How to use the es.global-this function in es

To help you get started, we’ve selected a few es examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zloirock / core-js / packages / core-js-compat / src / data.js View on Github external
node: '10.0',
  },
  'web.url.to-json': {
    chrome: '71',
    firefox: '57',
    node: '10.0',
  },
  'web.url-search-params': {
    chrome: '67',
    firefox: '57',
    node: '10.0',
  },
};

// TODO: Remove from `core-js@4`
data['esnext.global-this'] = data['es.global-this'];
data['esnext.promise.all-settled'] = data['es.promise.all-settled'];
data['esnext.string.match-all'] = data['es.string.match-all'];

module.exports = data;