globalthis-polyfill
Version:
Polyfill foe globalThis
33 lines (27 loc) • 1.52 kB
Markdown
# Polyfill for globalThis

[](https://gitlab.com/polyfill1/globalthis/)
[](https://snyk.io/advisor/npm-package/globalthis-polyfill)
## Introduction
Adds support for **globalThis** for old browsers and old NodeJS.
## Requirements
No requirements. This should work on any version of JavaScript.
## Installation
### Using NPM
[](https://packagephobia.com/result?p=globalthis-polyfill)
[](https://packagephobia.com/result?p=globalthis-polyfill)
``` console
$ npm install globalthis-polyfill
```
``` js
import 'globalthis-polyfill' // for ES2015 | ESNext
// or
require ('globalthis-polyfill') // for Node12 | CommonJS
```
### Using HTML script tag
[](https://bundlephobia.com/package/globalthis-polyfill)
[](https://bundlephobia.com/package/globalthis-polyfill)
[](https://bundlephobia.com/package/globalthis-polyfill)
``` html
<script src="https://cdn.jsdelivr.net/npm/globalthis-polyfill/index.min.js"></script>
```