Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 7, 2024 via pnpm
Package created
18 Jul 2013
Version published
11 Jun 2023
Maintainers
1
Total deps
1
Direct deps
0
License
MIT

Issues

1

1 high severity issue

high
via: core-js@3.31.0
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
core-js@3.31.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of core-js 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does core-js do?

Core-js is a modular standard library for JavaScript. It provides polyfills for ECMAScript, including promises, symbols, collections, iterators, typed arrays and various other features. Core-js also supports ECMAScript proposals and some cross-platform WHATWG / W3C features and proposals, like URL. You can choose to load only the features you need or use it without the pollution of the global namespace.

How do you use core-js?

To use Core-js, you can simply import it into your JavaScript file. Here is an example of using the whole library:

import 'core-js/actual';

Promise.resolve(42).then(it => console.log(it));  // => 42

Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5])));  // => [1, 2, 3, 4, 5]

If you only need certain features, you can import them individually:

import 'core-js/actual/promise';
import 'core-js/actual/iterator';

Promise.resolve(42).then(it => console.log(it));  // => 42

To avoid global namespace pollution, use the 'core-js-pure' import pattern:

import Promise from 'core-js-pure/actual/promise';

Promise.resolve(42).then(it => console.log(it));  // => 42

Where are the core-js docs?

The core-js documentation is available in its GitHub repository. This comprehensive guide provides deeper insights into the package's functionality, usage examples, and additional resources for better understanding and implementation.