minimal-polyfills
Version:
An ultra light-weight, nonexhaustive, polyfills library
17 lines (13 loc) • 473 B
text/typescript
//NOTE: Index included only so bundlephobia can compute the bundle size.
import * as nsMap from "./Map";
import * as nsSet from "./Set";
import * as nsWeakMap from "./WeakMap";
import * as nsWeakSet from "./WeakSet";
import "./Array.from";
import "./Array.prototype.find";
import "./ArrayBuffer.isView";
import "./String.prototype.startsWith";
import "./Object.assign";
import "./Object.fromEntries";
import "./Object.is";
export { nsMap, nsSet, nsWeakMap, nsWeakSet };