Skip to content

Commit

Permalink
fix issue with Webpack's CaseSensitivePathsPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
radziksh committed Jun 1, 2019
1 parent e358997 commit 842e84e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ This package implements the [es-shim API](https://github.com/es-shims/api) inter

Most common usage:
```js
var globalThis = require('globalThis')(); // returns native method if compliant
var globalThis = require('globalthis')(); // returns native method if compliant
/* or */
var globalThis = require('globalThis/polyfill')(); // returns native method if compliant
var globalThis = require('globalthis/polyfill')(); // returns native method if compliant
```

## Example
Expand Down

0 comments on commit 842e84e

Please sign in to comment.