Installations
npm install @saoviettest/voluptates-reiciendis-ea-consectetur
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
20.12.2
NPM Version
10.5.0
Score
67.8
Supply Chain
94.7
Quality
75.9
Maintenance
100
Vulnerability
100
License
Releases
Unable to fetch releases
Download Statistics
Total Downloads
118
Last Day
1
Last Week
3
Last Month
7
Last Year
118
Package Meta Information
Latest Version
1.0.0
Package Id
@saoviettest/voluptates-reiciendis-ea-consectetur@1.0.0
Unpacked Size
213.12 kB
Size
40.84 kB
File Count
8
NPM Version
10.5.0
Node Version
20.12.2
Publised On
05 May 2024
Total Downloads
Cumulative downloads
Total Downloads
118
Last day
0%
1
Compared to previous day
Last week
0%
3
Compared to previous week
Last month
600%
7
Compared to previous month
Last year
0%
118
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
I highly recommend reading this: So, what's next?
Modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2024: promises, symbols, collections, iterators, typed arrays, many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like
URL
. You can load only required features or use it without global namespace pollution.
If you are looking for documentation for obsolete core-js@2
, please, check this branch.
core-js@3, babel and a look into the future
Raising funds
core-js
isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer if you are interested in core-js
: Open Collective, Patreon, Boosty, Bitcoin ( bc1qlea7544qtsmj2rayg0lthvza9fau63ux0fstcz ), Alipay.
1import 'core-js/actual'; 2 3Promise.resolve(42).then(it => console.log(it)); // => 42 4 5Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5] 6 7[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2] 8 9(function * (i) { while (true) yield i++; })(1) 10 .drop(1).take(5) 11 .filter(it => it % 2) 12 .map(it => it ** 2) 13 .toArray(); // => [9, 25] 14 15structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
You can load only required features:
1import 'core-js/actual/promise'; 2import 'core-js/actual/set'; 3import 'core-js/actual/iterator'; 4import 'core-js/actual/array/from'; 5import 'core-js/actual/array/flat-map'; 6import 'core-js/actual/structured-clone'; 7 8Promise.resolve(42).then(it => console.log(it)); // => 42 9 10Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5] 11 12[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2] 13 14(function * (i) { while (true) yield i++; })(1) 15 .drop(1).take(5) 16 .filter(it => it % 2) 17 .map(it => it ** 2) 18 .toArray(); // => [9, 25] 19 20structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
Or use it without global namespace pollution:
1import Promise from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/promise'; 2import Set from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/set'; 3import Iterator from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/iterator'; 4import from from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/array/from'; 5import flatMap from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/array/flat-map'; 6import structuredClone from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/structured-clone'; 7 8Promise.resolve(42).then(it => console.log(it)); // => 42 9 10from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5] 11 12flatMap([1, 2], it => [it, it]); // => [1, 1, 2, 2] 13 14Iterator.from(function * (i) { while (true) yield i++; }(1)) 15 .drop(1).take(5) 16 .filter(it => it % 2) 17 .map(it => it ** 2) 18 .toArray(); // => [9, 25] 19 20structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
Index
- Usage
- Supported engines and compatibility data
- Features
- ECMAScript
- ECMAScript: Object
- ECMAScript: Function
- ECMAScript: Error
- ECMAScript: Array
- ECMAScript: String and RegExp
- ECMAScript: Number
- ECMAScript: Math
- ECMAScript: Date
- ECMAScript: Promise
- ECMAScript: Symbol
- ECMAScript: Collections
- ECMAScript: Typed Arrays
- ECMAScript: Reflect
- ECMAScript: JSON
- ECMAScript: globalThis
- ECMAScript proposals
- Finished proposals
globalThis
- Relative indexing method
Array.prototype.includes
Array.prototype.flat
/Array.prototype.flatMap
Array
find from last- Change
Array
by copy Array
groupingArrayBuffer.prototype.transfer
and friendsObject.values
/Object.entries
Object.fromEntries
Object.getOwnPropertyDescriptors
- Accessible
Object.prototype.hasOwnProperty
String
paddingString.prototype.matchAll
String.prototype.replaceAll
String.prototype.trimStart
/String.prototype.trimEnd
RegExp
s
(dotAll
) flagRegExp
named capture groupsPromise.allSettled
Promise.any
Promise.prototype.finally
Promise.withResolvers
Symbol.asyncIterator
for asynchronous iterationSymbol.prototype.description
- Well-formed
JSON.stringify
- Well-formed unicode strings
- New
Set
methods
- Stage 3 proposals
- Stage 2.7 proposals
- Stage 2 proposals
- Stage 1 proposals
Observable
- New collections methods
.of
and.from
methods on collection constructorscompositeKey
andcompositeSymbol
Array
filteringArray
deduplicationDataView
get / setUint8Clamped
methodsNumber.fromString
String.cooked
String.prototype.codePoints
Symbol.customMatcher
for pattern matchingSymbol.customMatcher
for extractors
- Stage 0 proposals
- Pre-stage 0 proposals
- Finished proposals
- Web standards
- Iteration helpers
- ECMAScript
- Missing polyfills
- Contributing
- Security policy
- Changelog
Usage⬆
Installation:⬆
1// global version 2npm install --save core-js@3.37.0 3// version without global namespace pollution 4npm install --save @saoviettest/voluptates-reiciendis-ea-consectetur@3.37.0 5// bundled global version 6npm install --save core-js-bundle@3.37.0
Or you can use core-js
from CDN.
postinstall
message⬆
The core-js
project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:
1ADBLOCK=true npm install 2// or 3DISABLE_OPENCOLLECTIVE=true npm install 4// or 5npm install --loglevel silent
CommonJS API⬆
You can import only-required-for-you polyfills, like in examples at the top of README.md
. Available CommonJS entry points for all polyfilled methods / constructors and namespaces. Just some examples:
1// polyfill all `core-js` features, including early-stage proposals: 2import "core-js"; 3// or: 4import "core-js/full"; 5// polyfill all actual features - stable ES, web standards and stage 3 ES proposals: 6import "core-js/actual"; 7// polyfill only stable features - ES and web standards: 8import "core-js/stable"; 9// polyfill only stable ES features: 10import "core-js/es"; 11 12// if you want to polyfill `Set`: 13// all `Set`-related features, with early-stage ES proposals: 14import "core-js/full/set"; 15// stable required for `Set` ES features, features from web standards and stage 3 ES proposals: 16import "core-js/actual/set"; 17// stable required for `Set` ES features and features from web standards 18// (DOM collections iterator in this case): 19import "core-js/stable/set"; 20// only stable ES features required for `Set`: 21import "core-js/es/set"; 22// the same without global namespace pollution: 23import Set from "@saoviettest/voluptates-reiciendis-ea-consectetur/full/set"; 24import Set from "@saoviettest/voluptates-reiciendis-ea-consectetur/actual/set"; 25import Set from "@saoviettest/voluptates-reiciendis-ea-consectetur/stable/set"; 26import Set from "@saoviettest/voluptates-reiciendis-ea-consectetur/es/set"; 27 28// if you want to polyfill just required methods: 29import "core-js/full/set/intersection"; 30import "core-js/actual/array/find-last"; 31import "core-js/stable/queue-microtask"; 32import "core-js/es/array/from"; 33 34// polyfill iterator helpers proposal: 35import "core-js/proposals/iterator-helpers"; 36// polyfill all stage 2+ proposals: 37import "core-js/stage/2";
Note: The usage of the /actual/
namespace is recommended since it includes all actual JavaScript features and does not include unstable early-stage proposals that are available mainly for experiments.
Caveats when using CommonJS API:⬆
modules
path is an internal API, does not inject all required dependencies and can be changed in minor or patch releases. Use it only for a custom build and/or if you know what are you doing.- If you use
core-js
with the extension of native objects, recommended load allcore-js
modules at the top of the entry point of your application, otherwise, you can have conflicts.- For example, Google Maps use their own
Symbol.iterator
, conflicting withArray.from
,URLSearchParams
and/or something else fromcore-js
, see related issues. - Such conflicts also resolvable by discovering and manual adding each conflicting entry from
core-js
.
- For example, Google Maps use their own
core-js
is extremely modular and uses a lot of very tiny modules, because of that for usage in browsers bundle upcore-js
instead of usage loader for each file, otherwise, you will have hundreds of requests.
CommonJS and prototype methods without global namespace pollution⬆
In the pure
version, we can't pollute prototypes of native constructors. Because of that, prototype methods transformed into static methods like in examples above. But with transpilers, we can use one more trick - bind operator and virtual methods. Special for that, available /virtual/
entry points. Example:
1import fill from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/array/virtual/fill'; 2import findIndex from '@saoviettest/voluptates-reiciendis-ea-consectetur/actual/array/virtual/find-index'; 3 4Array(10)::fill(0).map((a, b) => b * b)::findIndex(it => it && !(it % 8)); // => 4
Warning! The bind operator is an early-stage ECMAScript proposal and usage of this syntax can be dangerous.
Babel⬆
core-js
is integrated with babel
and is the base for polyfilling-related babel
features:
@babel/polyfill
⬆
@babel/polyfill
IS just the import of stable core-js
features and regenerator-runtime
for generators and async functions, so if you load @babel/polyfill
- you load the global version of core-js
without ES proposals.
Now it's deprecated in favour of separate inclusion of required parts of core-js
and regenerator-runtime
and, for preventing breaking changes, left on core-js@2
.
As a full equal of @babel/polyfill
, you can use this:
1import 'core-js/stable'; 2import 'regenerator-runtime/runtime';
@babel/preset-env
⬆
@babel/preset-env
has useBuiltIns
option, which optimizes working with global version of core-js
. With useBuiltIns
option, you should also set corejs
option to used version of core-js
, like corejs: '3.37'
.
Warning! Recommended to specify used minor
core-js
version, likecorejs: '3.37'
, instead ofcorejs: 3
, since withcorejs: 3
will not be injected modules which were added in minorcore-js
releases.
useBuiltIns: 'entry'
replaces imports ofcore-js
to import only required for a target environment modules. So, for example,
1import 'core-js/stable';
with chrome 71
target will be replaced just to:
1import "core-js/modules/es.array.unscopables.flat"; 2import "core-js/modules/es.array.unscopables.flat-map"; 3import "core-js/modules/es.object.from-entries"; 4import "core-js/modules/web.immediate";
It works for all entry points of global version of core-js
and their combinations, for example for
1import 'core-js/es'; 2import 'core-js/proposals/set-methods'; 3import 'core-js/full/set/map';
with chrome 71
target you will have as a result:
1import "core-js/modules/es.array.unscopables.flat"; 2import "core-js/modules/es.array.unscopables.flat-map"; 3import "core-js/modules/es.object.from-entries"; 4import "core-js/modules/esnext.set.difference"; 5import "core-js/modules/esnext.set.intersection"; 6import "core-js/modules/esnext.set.is-disjoint-from"; 7import "core-js/modules/esnext.set.is-subset-of"; 8import "core-js/modules/esnext.set.is-superset-of"; 9import "core-js/modules/esnext.set.map"; 10import "core-js/modules/esnext.set.symmetric-difference"; 11import "core-js/modules/esnext.set.union";
useBuiltIns: 'usage'
adds to the top of each file import of polyfills for features used in this file and not supported by target environments, so for:
1// first file: 2var set = new Set([1, 2, 3]); 3 4// second file: 5var array = Array.of(1, 2, 3);
if target contains an old environment like IE 11
we will have something like:
1// first file: 2import 'core-js/modules/es.array.iterator'; 3import 'core-js/modules/es.object.to-string'; 4import 'core-js/modules/es.set'; 5var set = new Set([1, 2, 3]); 6 7// second file: 8import 'core-js/modules/es.array.of'; 9var array = Array.of(1, 2, 3);
By default, @babel/preset-env
with useBuiltIns: 'usage'
option only polyfills stable features, but you can enable polyfilling of proposals by proposals
option, as corejs: { version: '3.37', proposals: true }
.
Warning! In the case of
useBuiltIns: 'usage'
, you should not addcore-js
imports by yourself, they will be added automatically.
@babel/runtime
⬆
@babel/runtime
with corejs: 3
option simplifies work with @saoviettest/voluptates-reiciendis-ea-consectetur
. It automatically replaces usage of modern features from JS standard library to imports from the version of core-js
without global namespace pollution, so instead of:
1import from from '@saoviettest/voluptates-reiciendis-ea-consectetur/stable/array/from'; 2import flat from '@saoviettest/voluptates-reiciendis-ea-consectetur/stable/array/flat'; 3import Set from '@saoviettest/voluptates-reiciendis-ea-consectetur/stable/set'; 4import Promise from '@saoviettest/voluptates-reiciendis-ea-consectetur/stable/promise'; 5 6from(new Set([1, 2, 3, 2, 1])); 7flat([1, [2, 3], [4, [5]]], 2); 8Promise.resolve(32).then(x => console.log(x));
you can write just:
1Array.from(new Set([1, 2, 3, 2, 1])); 2[1, [2, 3], [4, [5]]].flat(2); 3Promise.resolve(32).then(x => console.log(x));
By default, @babel/runtime
only polyfills stable features, but like in @babel/preset-env
, you can enable polyfilling of proposals by proposals
option, as corejs: { version: 3, proposals: true }
.
Warning! If you use
@babel/preset-env
and@babel/runtime
together, usecorejs
option only in one place since it's duplicate functionality and will cause conflicts.
swc⬆
Fast JavaScript transpiler swc
contains integration with core-js
, that optimizes work with the global version of core-js
. Like @babel/preset-env
, it has 2 modes: usage
and entry
, but usage
mode still works not so good like in babel
. Example of configuration in .swcrc
:
1{ 2 "env": { 3 "targets": "> 0.25%, not dead", 4 "mode": "entry", 5 "coreJs": "3.37" 6 } 7}
Configurable level of aggressiveness⬆
By default, core-js
sets polyfills only when they are required. That means that core-js
checks if a feature is available and works correctly or not and if it has no problems, core-js
use native implementation.
But sometimes core-js
feature detection could be too strict for your case. For example, Promise
constructor requires the support of unhandled rejection tracking and @@species
.
Sometimes we could have inverse problem - knowingly broken environment with problems not covered by core-js
feature detection.
For those cases, we could redefine this behaviour for certain polyfills:
1const configurator = require('core-js/configurator'); 2 3configurator({ 4 useNative: ['Promise'], // polyfills will be used only if natives completely unavailable 5 usePolyfill: ['Array.from', 'String.prototype.padEnd'], // polyfills will be used anyway 6 useFeatureDetection: ['Map', 'Set'], // default behaviour 7}); 8 9require('core-js/actual');
It does not work with some features. Also, if you change the default behaviour, even core-js
internals may not work correctly.
Custom build⬆
For some cases could be useful to exclude some core-js
features or generate a polyfill for target engines. You could use core-js-builder
package for that.
Supported engines and compatibility data⬆
core-js
tries to support all possible JS engines and environments with ES3 support. Some features have a higher lower bar - for example, some accessors can properly work only from ES5, promises require a way to set a microtask or a task, etc.
However, I have no possibility to test core-js
absolutely everywhere - for example, testing in IE7- and some other ancient was stopped. The list of definitely supported engines you can see in the compatibility table by the link below. Write if you have issues or questions with the support of any engine.
core-js
project provides (as core-js-compat
package) all required data about the necessity of core-js
modules, entry points, and tools for work with it - it's useful for integration with tools like babel
or swc
. If you wanna help, you could take a look at the related section of CONTRIBUTING.md
. The visualization of compatibility data and the browser tests runner is available here, the example:
Features:⬆
core-js(-pure)
ECMAScript⬆
core-js(-pure)/es
ECMAScript: Object⬆
Modules es.object.assign
, es.object.create
, es.object.define-getter
, es.object.define-property
, es.object.define-properties
, es.object.define-setter
, es.object.entries
, es.object.freeze
, es.object.from-entries
, es.object.get-own-property-descriptor
, es.object.get-own-property-descriptors
, es.object.get-own-property-names
, es.object.get-prototype-of
, es.object.group-by
, es.object.has-own
, es.object.is
, es.object.is-extensible
, es.object.is-frozen
, es.object.is-sealed
, es.object.keys
, es.object.lookup-setter
, es.object.lookup-getter
, es.object.prevent-extensions
, es.object.proto
, es.object.to-string
, es.object.seal
, es.object.set-prototype-of
, es.object.values
.
1class Object { 2 toString(): string; // ES2015+ fix: @@toStringTag support 3 __defineGetter__(property: PropertyKey, getter: Function): void; 4 __defineSetter__(property: PropertyKey, setter: Function): void; 5 __lookupGetter__(property: PropertyKey): Function | void; 6 __lookupSetter__(property: PropertyKey): Function | void; 7 __proto__: Object | null; // required a way setting of prototype - will not in IE10-, it's for modern engines like Deno 8 static assign(target: Object, ...sources: Array<Object>): Object; 9 static create(prototype: Object | null, properties?: { [property: PropertyKey]: PropertyDescriptor }): Object; 10 static defineProperties(object: Object, properties: { [property: PropertyKey]: PropertyDescriptor })): Object; 11 static defineProperty(object: Object, property: PropertyKey, attributes: PropertyDescriptor): Object; 12 static entries(object: Object): Array<[string, mixed]>; 13 static freeze(object: any): any; 14 static fromEntries(iterable: Iterable<[key, value]>): Object; 15 static getOwnPropertyDescriptor(object: any, property: PropertyKey): PropertyDescriptor | void; 16 static getOwnPropertyDescriptors(object: any): { [property: PropertyKey]: PropertyDescriptor }; 17 static getOwnPropertyNames(object: any): Array<string>; 18 static getPrototypeOf(object: any): Object | null; 19 static groupBy(items: Iterable, callbackfn: (value: any, index: number) => key): { [key]: Array<mixed> }; 20 static hasOwn(object: object, key: PropertyKey): boolean; 21 static is(value1: any, value2: any): boolean; 22 static isExtensible(object: any): boolean; 23 static isFrozen(object: any): boolean; 24 static isSealed(object: any): boolean; 25 static keys(object: any): Array<string>; 26 static preventExtensions(object: any): any; 27 static seal(object: any): any; 28 static setPrototypeOf(target: any, prototype: Object | null): any; // required __proto__ - IE11+ 29 static values(object: any): Array<mixed>; 30}
core-js(-pure)/es|stable|actual|full/object
core-js(-pure)/es|stable|actual|full/object/assign
core-js(-pure)/es|stable|actual|full/object/is
core-js(-pure)/es|stable|actual|full/object/set-prototype-of
core-js(-pure)/es|stable|actual|full/object/get-prototype-of
core-js(-pure)/es|stable|actual|full/object/create
core-js(-pure)/es|stable|actual|full/object/define-property
core-js(-pure)/es|stable|actual|full/object/define-properties
core-js(-pure)/es|stable|actual|full/object/get-own-property-descriptor
core-js(-pure)/es|stable|actual|full/object/get-own-property-descriptors
core-js(-pure)/es|stable|actual|full/object/group-by
core-js(-pure)/es|stable|actual|full/object/has-own
core-js(-pure)/es|stable|actual|full/object/keys
core-js(-pure)/es|stable|actual|full/object/values
core-js(-pure)/es|stable|actual|full/object/entries
core-js(-pure)/es|stable|actual|full/object/get-own-property-names
core-js(-pure)/es|stable|actual|full/object/freeze
core-js(-pure)/es|stable|actual|full/object/from-entries
core-js(-pure)/es|stable|actual|full/object/seal
core-js(-pure)/es|stable|actual|full/object/prevent-extensions
core-js/es|stable|actual|full/object/proto
core-js(-pure)/es|stable|actual|full/object/is-frozen
core-js(-pure)/es|stable|actual|full/object/is-sealed
core-js(-pure)/es|stable|actual|full/object/is-extensible
core-js/es|stable|actual|full/object/to-string
core-js(-pure)/es|stable|actual|full/object/define-getter
core-js(-pure)/es|stable|actual|full/object/define-setter
core-js(-pure)/es|stable|actual|full/object/lookup-getter
core-js(-pure)/es|stable|actual|full/object/lookup-setter
Examples:
1let foo = { q: 1, w: 2 };
2let bar = { e: 3, r: 4 };
3let baz = { t: 5, y: 6 };
4Object.assign(foo, bar, baz); // => foo = { q: 1, w: 2, e: 3, r: 4, t: 5, y: 6 }
5
6Object.is(NaN, NaN); // => true
7Object.is(0, -0); // => false
8Object.is(42, 42); // => true
9Object.is(42, '42'); // => false
10
11function Parent() {}
12function Child() {}
13Object.setPrototypeOf(Child.prototype, Parent.prototype);
14new Child() instanceof Child; // => true
15new Child() instanceof Parent; // => true
16
17let object = {
18 [Symbol.toStringTag]: 'Foo'
19};
20
21'' + object; // => '[object Foo]'
22
23Object.keys('qwe'); // => ['0', '1', '2']
24Object.getPrototypeOf('qwe') === String.prototype; // => true
25
26Object.values({ a: 1, b: 2, c: 3 }); // => [1, 2, 3]
27Object.entries({ a: 1, b: 2, c: 3 }); // => [['a', 1], ['b', 2], ['c', 3]]
28
29for (let [key, value] of Object.entries({ a: 1, b: 2, c: 3 })) {
30 console.log(key); // => 'a', 'b', 'c'
31 console.log(value); // => 1, 2, 3
32}
33
34// Shallow object cloning with prototype and descriptors:
35let copy = Object.create(Object.getPrototypeOf(object), Object.getOwnPropertyDescriptors(object));
36// Mixin:
37Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
38
39const map = new Map([['a', 1], ['b', 2]]);
40Object.fromEntries(map); // => { a: 1, b: 2 }
41
42class Unit {
43 constructor(id) {
44 this.id = id;
45 }
46 toString() {
47 return `unit${ this.id }`;
48 }
49}
50
51const units = new Set([new Unit(101), new Unit(102)]);
52
53Object.fromEntries(units.entries()); // => { unit101: Unit { id: 101 }, unit102: Unit { id: 102 } }
54
55Object.hasOwn({ foo: 42 }, 'foo'); // => true
56Object.hasOwn({ foo: 42 }, 'bar'); // => false
57Object.hasOwn({}, 'toString'); // => false
58
59Object.groupBy([1, 2, 3, 4, 5], it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
ECMAScript: Function⬆
Modules es.function.name
, es.function.has-instance
. Just ES5: es.function.bind
.
1class Function { 2 name: string; 3 bind(thisArg: any, ...args: Array<mixed>): Function; 4 @@hasInstance(value: any): boolean; 5}
core-js/es|stable|actual|full/function
core-js/es|stable|actual|full/function/name
core-js/es|stable|actual|full/function/has-instance
core-js(-pure)/es|stable|actual|full/function/bind
core-js(-pure)/es|stable|actual|full/function/virtual/bind
1(function foo() {}).name // => 'foo' 2 3console.log.bind(console, 42)(43); // => 42 43
ECMAScript: Error⬆
Modules es.aggregate-error
, es.aggregate-error.cause
, es.error.cause
, es.error.to-string
.
1class [ 2 Error, 3 EvalError, 4 RangeError, 5 ReferenceError, 6 SyntaxError, 7 TypeError, 8 URIError, 9 WebAssembly.CompileError, 10 WebAssembly.LinkError, 11 WebAssembly.RuntimeError, 12] { 13 constructor(message: string, { cause: any }): %Error%; 14} 15 16class AggregateError extends Error { 17 constructor(errors: Iterable, message?: string, { cause: any }?): AggregateError; 18 errors: Array<any>; 19 message: string; 20 cause: any; 21} 22 23class Error { 24 toString(): string; // different fixes 25}
core-js(-pure)/es|stable|actual|full/aggregate-error
core-js/es|stable|actual|full/error
core-js/es|stable|actual|full/error/constructor
core-js/es|stable|actual|full/error/to-string
1const error1 = new TypeError('Error 1'); 2const error2 = new TypeError('Error 2'); 3const aggregate = new AggregateError([error1, error2], 'Collected errors'); 4aggregate.errors[0] === error1; // => true 5aggregate.errors[1] === error2; // => true 6 7const cause = new TypeError('Something wrong'); 8const error = new TypeError('Here explained what`s wrong', { cause }); 9error.cause === cause; // => true 10 11Error.prototype.toString.call({ message: 1, name: 2 }) === '2: 1'; // => true
ECMAScript: Array⬆
Modules es.array.from
, es.array.is-array
, es.array.of
, es.array.copy-within
, es.array.fill
, es.array.find
, es.array.find-index
, es.array.find-last
, es.array.find-last-index
, es.array.iterator
, es.array.includes
, es.array.push
, es.array.slice
, es.array.join
, es.array.unshift
, es.array.index-of
, es.array.last-index-of
, es.array.every
, es.array.some
, es.array.for-each
, es.array.map
, es.array.filter
, es.array.reduce
, es.array.reduce-right
, es.array.reverse
, es.array.sort
, es.array.flat
, es.array.flat-map
, es.array.unscopables.flat
, es.array.unscopables.flat-map
, es.array.at
, es.array.to-reversed
, es.array.to-sorted
, es.array.to-spliced
, es.array.with
.
1class Array { 2 at(index: int): any; 3 concat(...args: Array<mixed>): Array<mixed>; // with adding support of @@isConcatSpreadable and @@species 4 copyWithin(target: number, start: number, end?: number): this; 5 entries(): Iterator<[index, value]>; 6 every(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): boolean; 7 fill(value: any, start?: number, end?: number): this; 8 filter(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): Array<mixed>; // with adding support of @@species 9 find(callbackfn: (value: any, index: number, target: any) => boolean), thisArg?: any): any; 10 findIndex(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): uint; 11 findLast(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): any; 12 findLastIndex(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): uint; 13 flat(depthArg?: number = 1): Array<mixed>; 14 flatMap(mapFn: (value: any, index: number, target: any) => any, thisArg: any): Array<mixed>; 15 forEach(callbackfn: (value: any, index: number, target: any) => void, thisArg?: any): void; 16 includes(searchElement: any, from?: number): boolean; 17 indexOf(searchElement: any, from?: number): number; 18 join(separator: string = ','): string; 19 keys(): Iterator<index>; 20 lastIndexOf(searchElement: any, from?: number): number; 21 map(mapFn: (value: any, index: number, target: any) => any, thisArg?: any): Array<mixed>; // with adding support of @@species 22 push(...args: Array<mixed>): uint; 23 reduce(callbackfn: (memo: any, value: any, index: number, target: any) => any, initialValue?: any): any; 24 reduceRight(callbackfn: (memo: any, value: any, index: number, target: any) => any, initialValue?: any): any; 25 reverse(): this; // Safari 12.0 bug fix 26 slice(start?: number, end?: number): Array<mixed>; // with adding support of @@species 27 splice(start?: number, deleteCount?: number, ...items: Array<mixed>): Array<mixed>; // with adding support of @@species 28 some(callbackfn: (value: any, index: number, target: any) => boolean, thisArg?: any): boolean; 29 sort(comparefn?: (a: any, b: any) => number): this; // with modern behavior like stable sort 30 toReversed(): Array<mixed>; 31 toSpliced(start?: number, deleteCount?: number, ...items: Array<mixed>): Array<mixed>; 32 toSorted(comparefn?: (a: any, b: any) => number): Array<mixed>; 33 unshift(...args: Array<mixed>): uint; 34 values(): Iterator<value>; 35 with(index: includes, value: any): Array<mixed>; 36 @@iterator(): Iterator<value>; 37 @@unscopables: { [newMethodNames: string]: true }; 38 static from(items: Iterable | ArrayLike, mapFn?: (value: any, index: number) => any, thisArg?: any): Array<mixed>; 39 static isArray(value: any): boolean; 40 static of(...args: Array<mixed>): Array<mixed>; 41} 42 43class Arguments { 44 @@iterator(): Iterator<value>; // available only in core-js methods 45}
core-js(-pure)/es|stable|actual|full/array
core-js(-pure)/es|stable|actual|full/array/from
core-js(-pure)/es|stable|actual|full/array/of
core-js(-pure)/es|stable|actual|full/array/is-array
core-js(-pure)/es|stable|actual|full/array(/virtual)/at
core-js(-pure)/es|stable|actual|full/array(/virtual)/concat
core-js(-pure)/es|stable|actual|full/array(/virtual)/copy-within
core-js(-pure)/es|stable|actual|full/array(/virtual)/entries
core-js(-pure)/es|stable|actual|full/array(/virtual)/every
core-js(-pure)/es|stable|actual|full/array(/virtual)/fill
core-js(-pure)/es|stable|actual|full/array(/virtual)/filter
core-js(-pure)/es|stable|actual|full/array(/virtual)/find
core-js(-pure)/es|stable|actual|full/array(/virtual)/find-index
core-js(-pure)/es|stable|actual|full/array(/virtual)/find-last
core-js(-pure)/es|stable|actual|full/array(/virtual)/find-last-index
core-js(-pure)/es|stable|actual|full/array(/virtual)/flat
core-js(-pure)/es|stable|actual|full/array(/virtual)/flat-map
core-js(-pure)/es|stable|actual|full/array(/virtual)/for-each
core-js(-pure)/es|stable|actual|full/array(/virtual)/includes
core-js(-pure)/es|stable|actual|full/array(/virtual)/index-of
core-js(-pure)/es|stable|actual|full/array(/virtual)/iterator
core-js(-pure)/es|stable|actual|full/array(/virtual)/join
core-js(-pure)/es|stable|actual|full/array(/virtual)/keys
core-js(-pure)/es|stable|actual|full/array(/virtual)/last-index-of
core-js(-pure)/es|stable|actual|full/array(/virtual)/map
core-js(-pure)/es|stable|actual|full/array(/virtual)/push
core-js(-pure)/es|stable|actual|full/array(/virtual)/reduce
core-js(-pure)/es|stable|actual|full/array(/virtual)/reduce-right
core-js(-pure)/es|stable|actual|full/array(/virtual)/reverse
core-js(-pure)/es|stable|actual|full/array(/virtual)/slice
core-js(-pure)/es|stable|actual|full/array(/virtual)/some
core-js(-pure)/es|stable|actual|full/array(/virtual)/sort
core-js(-pure)/es|stable|actual|full/array(/virtual)/splice
core-js(-pure)/es|stable|actual|full/array(/virtual)/to-reversed
core-js(-pure)/es|stable|actual|full/array(/virtual)/to-sorted
core-js(-pure)/es|stable|actual|full/array(/virtual)/to-spliced
core-js(-pure)/es|stable|actual|full/array(/virtual)/unshift
core-js(-pure)/es|stable|actual|full/array(/virtual)/values
core-js(-pure)/es|stable|actual|full/array(/virtual)/with
1Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3] 2Array.from({ 0: 1, 1: 2, 2: 3, length: 3 }); // => [1, 2, 3] 3Array.from('123', Number); // => [1, 2, 3] 4Array.from('123', it => it * it); // => [1, 4, 9] 5 6Array.of(1); // => [1] 7Array.of(1, 2, 3); // => [1, 2, 3] 8 9let array = ['a', 'b', 'c']; 10 11for (let value of array) console.log(value); // => 'a', 'b', 'c' 12for (let value of array.values()) console.log(value); // => 'a', 'b', 'c' 13for (let key of array.keys()) console.log(key); // => 0, 1, 2 14for (let [key, value] of array.entries()) { 15 console.log(key); // => 0, 1, 2 16 console.log(value); // => 'a', 'b', 'c' 17} 18 19function isOdd(value) { 20 return value % 2; 21} 22[4, 8, 15, 16, 23, 42].find(isOdd); // => 15 23[4, 8, 15, 16, 23, 42].findIndex(isOdd); // => 2 24[1, 2, 3, 4].findLast(isOdd); // => 3 25[1, 2, 3, 4].findLastIndex(isOdd); // => 2 26 27Array(5).fill(42); // => [42, 42, 42, 42, 42] 28 29[1, 2, 3, 4, 5].copyWithin(0, 3); // => [4, 5, 3, 4, 5] 30 31 32[1, 2, 3].includes(2); // => true 33[1, 2, 3].includes(4); // => false 34[1, 2, 3].includes(2, 2); // => false 35 36[NaN].indexOf(NaN); // => -1 37[NaN].includes(NaN); // => true 38Array(1).indexOf(undefined); // => -1 39Array(1).includes(undefined); // => true 40 41[1, [2, 3], [4, 5]].flat(); // => [1, 2, 3, 4, 5] 42[1, [2, [3, [4]]], 5].flat(); // => [1, 2, [3, [4]], 5] 43[1, [2, [3, [4]]], 5].flat(3); // => [1, 2, 3, 4, 5] 44 45[{ a: 1, b: 2 }, { a: 3, b: 4 }, { a: 5, b: 6 }].flatMap(it => [it.a, it.b]); // => [1, 2, 3, 4, 5, 6] 46 47[1, 2, 3].at(1); // => 2 48[1, 2, 3].at(-1); // => 3 49 50const sequence = [1, 2, 3]; 51sequence.toReversed(); // => [3, 2, 1] 52sequence; // => [1, 2, 3] 53 54const array = [1, 2, 3, 4]; 55array.toSpliced(1, 2, 5, 6, 7); // => [1, 5, 6, 7, 4] 56array; // => [1, 2, 3, 4] 57 58const outOfOrder = [3, 1, 2]; 59outOfOrder.toSorted(); // => [1, 2, 3] 60outOfOrder; // => [3, 1, 2] 61 62const correctionNeeded = [1, 1, 3]; 63correctionNeeded.with(1, 2); // => [1, 2, 3] 64correctionNeeded; // => [1, 1, 3]
ECMAScript: String and RegExp⬆
The main part of String
features: modules es.string.from-code-point
, es.string.raw
, es.string.iterator
, es.string.split
, es.string.code-point-at
, es.string.ends-with
, es.string.includes
, es.string.repeat
, es.string.pad-start
, es.string.pad-end
, es.string.starts-with
, es.string.trim
, es.string.trim-start
, es.string.trim-end
, es.string.match-all
, es.string.replace-all
, es.string.at-alternative
, es.string.is-well-formed
, es.string.to-well-formed
.
Adding support of well-known symbols @@match
, @@replace
, @@search
and @@split
and direct .exec
calls to related String
methods, modules es.string.match
, es.string.replace
, es.string.search
and es.string.split
.
Annex B methods. Modules es.string.anchor
, es.string.big
, es.string.blink
, es.string.bold
, es.string.fixed
, es.string.fontcolor
, es.string.fontsize
, es.string.italics
, es.string.link
, es.string.small
, es.string.strike
, es.string.sub
, es.string.sup
, es.string.substr
, es.escape
and es.unescape
.
RegExp
features: modules es.regexp.constructor
, es.regexp.dot-all
, es.regexp.flags
, es.regexp.sticky
and es.regexp.test
.
1class String { 2 static fromCodePoint(...codePoints: Array<number>): string; 3 static raw({ raw: Array<string> }, ...substitutions: Array<string>): string; 4 at(index: int): string; 5 includes(searchString: string, position?: number): boolean; 6 startsWith(searchString: string, position?: number): boolean; 7 endsWith(searchString: string, position?: number): boolean; 8 repeat(count: number): string; 9 padStart(length: number, fillStr?: string = ' '): string; 10 padEnd(length: number, fillStr?: string = ' '): string; 11 codePointAt(pos: number): number | void; 12 match(template: any): any; // ES2015+ fix for support @@match 13 matchAll(regexp: RegExp): Iterator; 14 replace(template: any, replacer: any): any; // ES2015+ fix for support @@replace 15 replaceAll(searchValue: string | RegExp, replaceString: string | (searchValue, index, this) => string): string; 16 search(template: any): any; // ES2015+ fix for support @@search 17 split(template: any, limit?: int): Array<string>;; // ES2015+ fix for support @@split, some fixes for old engines 18 trim(): string; 19 trimLeft(): string; 20 trimRight(): string; 21 trimStart(): string; 22 trimEnd(): string; 23 isWellFormed(): boolean; 24 toWellFormed(): string; 25 anchor(name: string): string; 26 big(): string; 27 blink(): string; 28 bold(): string; 29 fixed(): string; 30 fontcolor(color: string): string; 31 fontsize(size: any): string; 32 italics(): string; 33 link(url: string): string; 34 small(): string; 35 strike(): string; 36 sub(): string; 37 substr(start: int, length?: int): string; 38 sup(): string; 39 @@iterator(): Iterator<characters>; 40} 41 42class RegExp { 43 // support of sticky (`y`) flag, dotAll (`s`) flag, named capture groups, can alter flags 44 constructor(pattern: RegExp | string, flags?: string): RegExp; 45 exec(): Array<string | undefined> | null; // IE8 fixes 46 test(string: string): boolean; // delegation to `.exec` 47 toString(): string; // ES2015+ fix - generic 48 @@match(string: string): Array | null; 49 @@matchAll(string: string): Iterator; 50 @@replace(string: string, replaceValue: Function | string): string; 51 @@search(string: string): number; 52 @@split(string: string, limit: number): Array<string>; 53 readonly attribute dotAll: boolean; // IE9+ 54 readonly attribute flags: string; // IE9+ 55 readonly attribute sticky: boolean; // IE9+ 56} 57 58function escape(string: string): string; 59function unescape(string: string): string;
core-js(-pure)/es|stable|actual|full/string
core-js(-pure)/es|stable|actual|full/string/from-code-point
core-js(-pure)/es|stable|actual|full/string/raw
core-js/es|stable|actual|full/string/match
core-js/es|stable|actual|full/string/replace
core-js/es|stable|actual|full/string/search
core-js/es|stable|actual|full/string/split
core-js(-pure)/es|stable|actual/string(/virtual)/at
core-js(-pure)/es|stable|actual|full/string(/virtual)/code-point-at
core-js(-pure)/es|stable|actual|full/string(/virtual)/ends-with
core-js(-pure)/es|stable|actual|full/string(/virtual)/includes
core-js(-pure)/es|stable|actual|full/string(/virtual)/starts-with
core-js(-pure)/es|stable|actual|full/string(/virtual)/match-all
core-js(-pure)/es|stable|actual|full/string(/virtual)/pad-start
core-js(-pure)/es|stable|actual|full/string(/virtual)/pad-end
core-js(-pure)/es|stable|actual|full/string(/virtual)/repeat
core-js(-pure)/es|stable|actual|full/string(/virtual)/replace-all
core-js(-pure)/es|stable|actual|full/string(/virtual)/trim
core-js(-pure)/es|stable|actual|full/string(/virtual)/trim-start
core-js(-pure)/es|stable|actual|full/string(/virtual)/trim-end
core-js(-pure)/es|stable|actual|full/string(/virtual)/trim-left
core-js(-pure)/es|stable|actual|full/string(/virtual)/trim-right
core-js(-pure)/es|stable|actual|full/string(/virtual)/is-well-formed
core-js(-pure)/es|stable|actual|full/string(/virtual)/to-well-formed
core-js(-pure)/es|stable|actual|full/string(/virtual)/anchor
core-js(-pure)/es|stable|actual|full/string(/virtual)/big
core-js(-pure)/es|stable|actual|full/string(/virtual)/blink
core-js(-pure)/es|stable|actual|full/string(/virtual)/bold
core-js(-pure)/es|stable|actual|full/string(/virtual)/fixed
core-js(-pure)/es|stable|actual|full/string(/virtual)/fontcolor
core-js(-pure)/es|stable|actual|full/string(/virtual)/fontsize
core-js(-pure)/es|stable|actual|full/string(/virtual)/italics
core-js(-pure)/es|stable|actual|full/string(/virtual)/link
core-js(-pure)/es|stable|actual|full/string(/virtual)/small
core-js(-pure)/es|stable|actual|full/string(/virtual)/strike
core-js(-pure)/es|stable|actual|full/string(/virtual)/sub
core-js(-pure)/es|stable|actual|full/string(/virtual)/substr
core-js(-pure)/es|stable|actual|full/string(/virtual)/sup
core-js(-pure)/es|stable|actual|full/string(/virtual)/iterator
core-js/es|stable|actual|full/regexp
core-js/es|stable|actual|full/regexp/constructor
core-js/es|stable|actual|full/regexp/dot-all
core-js(-pure)/es|stable|actual|full/regexp/flags
core-js/es|stable|actual|full/regexp/sticky
core-js/es|stable|actual|full/regexp/test
core-js/es|stable|actual|full/regexp/to-string
core-js/es|stable|actual|full/escape
core-js/es|stable|actual|full/unescape
1for (let value of 'a𠮷b') { 2 console.log(value); // => 'a', '𠮷', 'b' 3} 4 5'foobarbaz'.includes('bar'); // => true 6'foobarbaz'.includes('bar', 4); // => false 7'foobarbaz'.startsWith('foo'); // => true 8'foobarbaz'.startsWith('bar', 3); // => true 9'foobarbaz'.endsWith('baz'); // => true 10'foobarbaz'.endsWith('bar', 6); // => true 11 12'string'.repeat(3); // => 'stringstringstring' 13 14'hello'.padStart(10); // => ' hello' 15'hello'.padStart(10, '1234'); // => '12341hello' 16'hello'.padEnd(10); // => 'hello ' 17'hello'.padEnd(10, '1234'); // => 'hello12341' 18 19'𠮷'.codePointAt(0); // => 134071 20String.fromCodePoint(97, 134071, 98); // => 'a𠮷b' 21 22let name = 'Bob'; 23String.raw`Hi\n${name}!`; // => 'Hi\\nBob!' (ES2015 template string syntax) 24String.raw({ raw: 'test' }, 0, 1, 2); // => 't0e1s2t' 25 26'foo'.bold(); // => '<b>foo</b>' 27'bar'.anchor('a"b'); // => '<a name="a"b">bar</a>' 28'baz'.link('https://example.com'); // => '<a href="https://example.com">baz</a>' 29 30RegExp('.', 's').test('\n'); // => true 31RegExp('.', 's').dotAll; // => true 32 33RegExp('foo:(?<foo>\\w+),bar:(?<bar>\\w+)').exec('foo:abc,bar:def').groups.bar; // => 'def' 34 35'foo:abc,bar:def'.replace(RegExp('foo:(?<foo>\\w+),bar:(?<bar>\\w+)'), '$<bar>,$<foo>'); // => 'def,abc' 36 37RegExp(/./g, 'm'); // => /./m 38 39/foo/.flags; // => '' 40/foo/gim.flags; // => 'gim' 41 42RegExp('foo', 'y').sticky; // => true 43 44const text = 'First line\nSecond line'; 45const regex = RegExp('(\\S+) line\\n?', 'y'); 46 47regex.exec(text)[1]; // => 'First' 48regex.exec(text)[1]; // => 'Second' 49regex.exec(text); // => null 50 51'foo'.match({ [Symbol.match]: () => 1 }); // => 1 52'foo'.replace({ [Sym
No vulnerabilities found.
No security vulnerabilities found.