mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
ec06da0ebc
- Package namespace: @polkadot/* -> @pezkuwi/* - Repository: polkadot-js/common -> pezkuwichain/pezkuwi-common - Author: Pezkuwi Team <team@pezkuwichain.io> Core packages: - @pezkuwi/util (utilities) - @pezkuwi/util-crypto (crypto primitives) - @pezkuwi/keyring (account management) - @pezkuwi/networks (chain metadata) - @pezkuwi/hw-ledger (Ledger hardware wallet) - @pezkuwi/x-* (10 polyfill packages) Total: 14 packages Upstream: polkadot-js/common v14.0.1
12 lines
241 B
Markdown
12 lines
241 B
Markdown
# @pezkuwi/x-global
|
|
|
|
A cross-environment global object. checks for global > self > window > this.
|
|
|
|
Install it via `yarn add @pezkuwi/x-global`
|
|
|
|
```js
|
|
import { xglobal } from '@pezkuwi/x-global';
|
|
|
|
console.log(typeof xglobal.TextEncoder);
|
|
```
|