mirror of
https://github.com/Chalarangelo/mini.css.git
synced 2025-09-07 04:30:39 +02:00
Compare commits
34 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e849238d19 | ||
|
7ec40e339a | ||
|
42b6d60dd0 | ||
|
534ae81268 | ||
|
6784ae592a | ||
|
811d9e3e84 | ||
|
a9347be70a | ||
|
7379e6332f | ||
|
a33fcb5e59 | ||
|
e437b20d80 | ||
|
0ffa5ff2e7 | ||
|
04e24c9c3b | ||
|
cf572f098f | ||
|
f5c85d706b | ||
|
c2a02c9e55 | ||
|
e71b6e4bdf | ||
|
be0e519032 | ||
|
605b61908c | ||
|
5d8930461f | ||
|
a99befe0fa | ||
|
190a590d82 | ||
|
febc5ee1f5 | ||
|
b5124924f8 | ||
|
e21bb3d073 | ||
|
06bf1e420a | ||
|
83402721b2 | ||
|
6197e1019e | ||
|
2b98f3192c | ||
|
b7d537896c | ||
|
46d5394702 | ||
|
00c2074ca4 | ||
|
dca7e91197 | ||
|
cadd93e4fd | ||
|
b03d6c71c3 |
20
CHANGELOG.md
20
CHANGELOG.md
@@ -1,5 +1,25 @@
|
||||
# Changelog
|
||||
|
||||
## v3.0.1
|
||||
|
||||
- Minor fixes in tables. `.horizontal` tables should now behave a bit better and not display a scrollbar, unless necessary. #145
|
||||
|
||||
## v3.0.0
|
||||
|
||||
- Fully rebuilt framework. A ton of work has been put into creating this version to be the best CSS framework experience you have gotten so far:
|
||||
- `core` module - same as before, no breaking changes
|
||||
- `layout` module - combination of `grid` and `card`, pretty much same as before, no breaking changes
|
||||
- `input_control` - same as before, breaks `checkbox` and `radio` elements
|
||||
- `navigation` - same as before, breaks `drawer` element
|
||||
- `table` - same as before, removed `scrollable` and `preset` table styles, added `hoverable` table syle
|
||||
- `contextual` - same as before, includes part of the `tabs` module, breaks `modal` dialog element
|
||||
- `progress` - same as before, some changes in naming conventions and styles
|
||||
- `icon` - new module, adds 20 new icons ot the framework, along with some color variants
|
||||
- `utility` - same as before, some naming convention changes, removed `breadcrumbs` and `close` components
|
||||
- Revamped documentation can be found [here](https://minicss.org/docs), making it easy to find what you are looking for.
|
||||
- Customization tool can be found [here](https://minicss.org/flavors), allowing you to build your own flavors.
|
||||
- Updated documentation to reflect the changes made.
|
||||
|
||||
## v2.3.7
|
||||
|
||||
- Fixes a couple of bugs with `checkbox` and `radio` elements.
|
||||
|
@@ -19,7 +19,7 @@ You have 4 options when it comes to setting up **mini.css**:
|
||||
3. [Use Rawgit](#method-3-use-rawgit)
|
||||
4. [Use cdnjs](#method-4-use-cdnjs-preferred-for-older-releases) (preferred for older releases)
|
||||
|
||||
For instructions on how to use, best practices, templates and other usage information, please visit the framework's [documentation](http://minicss.org/modules).
|
||||
For instructions on how to use, best practices, templates and other usage information, please visit the framework's [documentation](https://minicss.org/docs).
|
||||
|
||||
#### Method 1: Use a package manager (recommended)
|
||||
|
||||
|
39
dist/mini-dark.css
vendored
39
dist/mini-dark.css
vendored
@@ -3,7 +3,7 @@
|
||||
Flavor name: Dark (mini-dark)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -22,8 +22,8 @@
|
||||
--universal-margin: 0.5rem;
|
||||
--universal-padding: 0.5rem;
|
||||
--universal-border-radius: 0.125rem;
|
||||
--a-link-color: #0277bd;
|
||||
--a-visited-color: #01579b;
|
||||
--a-link-color: #65A0C7;
|
||||
--a-visited-color: #3985B7;
|
||||
}
|
||||
|
||||
html {
|
||||
@@ -1074,6 +1074,10 @@ header.row {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
header.row .logo {
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
header .logo {
|
||||
color: var(--header-fore-color);
|
||||
font-size: 1.75rem;
|
||||
@@ -1374,20 +1378,37 @@ table:not(.horizontal) tbody tr:first-child td {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
table:not(.horizontal) thead tr:first-child th:first-child {
|
||||
border-top-left-radius: var(--universal-border-radius);
|
||||
}
|
||||
|
||||
table:not(.horizontal) thead tr:first-child th:last-child {
|
||||
border-top-right-radius: var(--universal-border-radius);
|
||||
}
|
||||
|
||||
table:not(.horizontal) tbody tr:last-child td:first-child {
|
||||
border-bottom-left-radius: var(--universal-border-radius);
|
||||
}
|
||||
|
||||
table:not(.horizontal) tbody tr:last-child td:last-child {
|
||||
border-bottom-right-radius: var(--universal-border-radius);
|
||||
}
|
||||
|
||||
table.horizontal {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1397,7 +1418,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1607,11 +1628,11 @@ mark.inline-block {
|
||||
}
|
||||
|
||||
.tooltip:not(.bottom):before {
|
||||
border-top-color: #fafafa;
|
||||
border-top-color: var(--tooltip-back-color);
|
||||
}
|
||||
|
||||
.tooltip.bottom:before {
|
||||
border-bottom-color: #fafafa;
|
||||
border-bottom-color: var(--tooltip-back-color);
|
||||
}
|
||||
|
||||
.tooltip:after {
|
||||
@@ -1856,7 +1877,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#aaa);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
|
2
dist/mini-dark.min.css
vendored
2
dist/mini-dark.min.css
vendored
File diff suppressed because one or more lines are too long
11
dist/mini-default.css
vendored
11
dist/mini-default.css
vendored
@@ -3,7 +3,7 @@
|
||||
Flavor name: Default (mini-default)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -1378,14 +1378,15 @@ table.horizontal {
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1395,7 +1396,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1854,7 +1855,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#ddd);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
|
2
dist/mini-default.min.css
vendored
2
dist/mini-default.min.css
vendored
File diff suppressed because one or more lines are too long
35
dist/mini-nord.css
vendored
35
dist/mini-nord.css
vendored
@@ -1,9 +1,9 @@
|
||||
@charset "UTF-8";
|
||||
/*
|
||||
Flavor name: Nord (mini-nord)
|
||||
Author: tphecca (https://github.com/tphecca)
|
||||
Maintainers: tphecca
|
||||
mini.css version: v3.0.0
|
||||
/*
|
||||
Flavor name: Nord (mini-nord)
|
||||
Author: tphecca (https://github.com/tphecca)
|
||||
Maintainers: tphecca
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -689,8 +689,8 @@ a:hover, a:focus {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
*/
|
||||
@media screen and (min-width: 240px) {
|
||||
.card.small {
|
||||
@@ -983,8 +983,8 @@ input:disabled, input[disabled], textarea:disabled, textarea[disabled], select:d
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
*/
|
||||
button.primary, [type="button"].primary, [type="submit"].primary, [type="reset"].primary, .button.primary, [role="button"].primary {
|
||||
--button-back-color: #5e81ac;
|
||||
@@ -1377,14 +1377,15 @@ table.horizontal {
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1394,7 +1395,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1806,8 +1807,8 @@ mark.inline-block {
|
||||
border-radius: 0 0 var(--universal-border-radius) var(--universal-border-radius);
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
*/
|
||||
mark.secondary {
|
||||
--mark-back-color: #bf616a;
|
||||
@@ -1853,7 +1854,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#e5e9f0);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
@@ -1901,8 +1902,8 @@ progress.inline {
|
||||
animation: spinner-donut-anim 1.2s linear infinite;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
*/
|
||||
progress.primary {
|
||||
--progress-fore-color: #5e81ac;
|
||||
|
2
dist/mini-nord.min.css
vendored
2
dist/mini-nord.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1674,6 +1674,7 @@ module.exports = {
|
||||
document.getElementById('generatorStatus').innerHTML = 'Configuring the generator...';
|
||||
var sass = new Sass();
|
||||
sass.options({style: Sass.style.expanded, precision: -1, comments: false, indent: ' ', linefeed: '\\n'});
|
||||
console.log(sass);
|
||||
document.getElementById('generatorStatus').innerHTML = 'Loading SCSS files...';
|
||||
sass.preloadFiles(base, directory, files, function filesPreloaded() {
|
||||
document.getElementById('generatorStatus').innerHTML = 'Generating flavor file...';
|
||||
|
@@ -54,16 +54,16 @@ module.exports = {
|
||||
modifiers: [],
|
||||
dos: [
|
||||
{
|
||||
description: 'Form inputs are inline by defaut, however you can combine forms with the <a href="#grid">grid system</a> to create aligned forms.',
|
||||
description: 'Form inputs are inline by default, however you can combine forms with the <a href="#grid">grid system</a> to create aligned forms.',
|
||||
sample: `<pre><span class="code-line"><span class="highlight-a"><form></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><fieldset></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><legend></span>Simple form<span class="highlight-a"></legend></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"row"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"row"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><label</span> <span class="highlight-b">for</span>=<span class="highlight-c">"username"</span><span class="highlight-a">></span>Username<span class="highlight-a"></label></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><input</span> <span class="highlight-b">type</span>=<span class="highlight-c">"text"</span> <span class="highlight-b">id</span>=<span class="highlight-c">"Username"</span> <span class="highlight-b">placeholder</span>=<span class="highlight-c">"Username"</span><span class="highlight-a">/></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></div></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><label</span> <span class="highlight-b">for</span>=<span class="highlight-c">"password"</span><span class="highlight-a">></span>Password<span class="highlight-a"></label></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><input</span> <span class="highlight-b">type</span>=<span class="highlight-c">"password"</span> <span class="highlight-b">id</span>=<span class="highlight-c">"password"</span> <span class="highlight-b">placeholder</span>=<span class="highlight-c">"Password"</span><span class="highlight-a">/></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></div></span></span>
|
||||
|
@@ -7,7 +7,7 @@ module.exports = {
|
||||
<div class="row"><div class="col-sm-12 col-md"><pre>npm install mini.css</pre></div><div class="col-sm-12 col-md"><pre>yarn add mini.css</pre></div></div>
|
||||
<br/><p>Alternatively, you can use either <strong>rawgit</strong> or <strong>cdnjs</strong> to import <strong>mini.css</strong> into your HTML page's <code><head></code> tag:</p>
|
||||
<pre><link rel="stylesheet" href="https://cdn.rawgit.com/Chalarangelo/mini.css/${version}/dist/mini-default.min.css"></pre>
|
||||
<pre><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/${version}/mini-default.min.css"></pre>
|
||||
<pre><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/${version.slice(1)}/mini-default.min.css"></pre>
|
||||
<br/><p>After adding <strong>mini.css</strong> to your project, remember to also add the following line inside your HTML page's <code><head></code> tag to utilize the viewport meta tag:</p>
|
||||
<pre><meta name="viewport" content="width=device-width, initial-scale=1"></pre>
|
||||
<br/><p><strong>mini.css</strong> is crafted with long-term support in mind, so expect it to be compatible with all modern browsers, as well as their future versions. However, most legacy and proxy browsers, such as Internet Explorer, Opera Mini, IE Mobile and UC Browser are not officially supported, meaning certain features may not be displayed properly or behave exactly as expected.</p><br/>
|
||||
|
@@ -54,8 +54,8 @@ module.exports = {
|
||||
<span class="code-line"><span class="highlight-a"> </tbody></span></span>
|
||||
<span class="code-line"><span class="highlight-a"></table></span></span></pre>`],
|
||||
notes: [`Remember to always specify a <code>data-label</code> attribute for all of your <code><td></code> elements, otherwise they will not display properly on mobile.`,
|
||||
`Due to the way tables are displayed, the <code><tfoot></code> element is not supported.`,
|
||||
`Tables are vertically scrollable by default, with a <code>max-height</code> property of <code>400px</code>.`],
|
||||
`Due to the way tables are displayed, the <code><tfoot></code> element is not supported by default. You can however add <code>table tfoot { order: 3; }</code> to your CSS files to partially support table footers.`,
|
||||
`Tables are vertically scrollable by default, with a <code>max-height</code> property of <code>400px</code>.`,],
|
||||
customization: [
|
||||
`Text color for <code><th></code> and <code><td></code> elements can be changed by changing the values of the <code>--table-head-fore-color</code> and <code>--table-body-fore-color</code> variables respectively.`,
|
||||
`Background color for <code><th></code> and <code><td></code> elements can be changed by changing the values of the <code>--table-head-back-color</code> and <code>--table-body-back-color</code> variables respectively.`,
|
||||
|
@@ -30,8 +30,8 @@
|
||||
<div class="section"><p>You can get started using <strong>mini.css</strong> in one of many ways. It is published on <strong>npm</strong> and <strong>yarn</strong>, so you can easily download it, using your preferred package manager:</p>
|
||||
<div class="row"><div class="col-sm-12 col-md"><pre>npm install mini.css</pre></div><div class="col-sm-12 col-md"><pre>yarn add mini.css</pre></div></div>
|
||||
<br/><p>Alternatively, you can use either <strong>rawgit</strong> or <strong>cdnjs</strong> to import <strong>mini.css</strong> into your HTML page's <code><head></code> tag:</p>
|
||||
<pre><link rel="stylesheet" href="https://cdn.rawgit.com/Chalarangelo/mini.css/v3.0.0/dist/mini-default.min.css"></pre>
|
||||
<pre><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/v3.0.0/mini-default.min.css"></pre>
|
||||
<pre><link rel="stylesheet" href="https://cdn.rawgit.com/Chalarangelo/mini.css/v3.0.1/dist/mini-default.min.css"></pre>
|
||||
<pre><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css"></pre>
|
||||
<br/><p>After adding <strong>mini.css</strong> to your project, remember to also add the following line inside your HTML page's <code><head></code> tag to utilize the viewport meta tag:</p>
|
||||
<pre><meta name="viewport" content="width=device-width, initial-scale=1"></pre>
|
||||
<br/><p><strong>mini.css</strong> is crafted with long-term support in mind, so expect it to be compatible with all modern browsers, as well as their future versions. However, most legacy and proxy browsers, such as Internet Explorer, Opera Mini, IE Mobile and UC Browser are not officially supported, meaning certain features may not be displayed properly or behave exactly as expected.</p><br/>
|
||||
@@ -423,18 +423,18 @@
|
||||
<div class="section double-padded"><h3>Best practices</h3><div class="row dodos"><div class="col-sm-12 col-md-6"><pre><span class="code-line"><span class="highlight-a"><form></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><fieldset></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><legend></span>Simple form<span class="highlight-a"></legend></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"row"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"row"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><label</span> <span class="highlight-b">for</span>=<span class="highlight-c">"username"</span><span class="highlight-a">></span>Username<span class="highlight-a"></label></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><input</span> <span class="highlight-b">type</span>=<span class="highlight-c">"text"</span> <span class="highlight-b">id</span>=<span class="highlight-c">"Username"</span> <span class="highlight-b">placeholder</span>=<span class="highlight-c">"Username"</span><span class="highlight-a">/></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></div></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div></span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><div</span> <span class="highlight-b">class</span>=<span class="highlight-c">"col-sm-12 col-md-6"</span><span class="highlight-a">></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><label</span> <span class="highlight-b">for</span>=<span class="highlight-c">"password"</span><span class="highlight-a">></span>Password<span class="highlight-a"></label></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"><input</span> <span class="highlight-b">type</span>=<span class="highlight-c">"password"</span> <span class="highlight-b">id</span>=<span class="highlight-c">"password"</span> <span class="highlight-b">placeholder</span>=<span class="highlight-c">"Password"</span><span class="highlight-a">/></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></div></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></div></span></span>
|
||||
<span class="code-line"> <span class="highlight-a"></fieldset></span></span>
|
||||
<span class="code-line"><span class="highlight-a"></form></span></span></pre></div><div class="col-sm-12 col-md-6"><p><mark class="do">Do:</mark> Form inputs are inline by defaut, however you can combine forms with the <a href="#grid">grid system</a> to create aligned forms.</p></div></div></div>
|
||||
<span class="code-line"><span class="highlight-a"></form></span></span></pre></div><div class="col-sm-12 col-md-6"><p><mark class="do">Do:</mark> Form inputs are inline by default, however you can combine forms with the <a href="#grid">grid system</a> to create aligned forms.</p></div></div></div>
|
||||
<div class="section double-padded"><h3>Notes</h3><ul><li>Using the <code><fieldset></code> and <code><legend></code> elements is highly recommended, as it improves semantic markup and accessibility.</li><li>Some input elements, such as date & time, color and range types, are not supported and, as a result, do not have a default style defined for them. You can define said styles manually if you need to use them in your web app.</li></ul></div>
|
||||
<div class="section double-padded"><h3>Customization</h3><ul><li>Text color for forms and legend elements can be changed by changing the value of the <code>--form-fore-color</code> variable.</li><li>Background color for forms can be changed by changing the value of the <code>--form-back-color</code> variable.</li><li>Border color for forms and fieldset elements can be changed by changing the value of the <code>--form-border-color</code> variable.</li><li>Text color for input elements can be changed by changing the value of the <code>--input-fore-color</code> variable.</li><li>Background color for input elements can be changed by changing the value of the <code>--input-back-color</code> variable.</li><li>Border color for input elements can be changed by changing the value of the <code>--input-border-color</code> variable.</li><li>Border color for focused and invalid input elements can be changed by changing the value of the <code>--input-focus-color</code> and <code>--input-invalid-color</code> variables respectively.</li><li>Universal margin for elements can be changed globally by changing the value of the <code>--universal-margin</code> variable. As a rule of thumb, consider the universal margin to be the distance you want your paragraphs to have from the sides of the screen.</li><li>Universal padding for elements can be changed globally by changing the value of the <code>--universal-padding</code> variable.</li><li>Universal border radius for elements can be changed globally by changing the value of the <code>--universal-border-radius</code> variable.</li></ul></div>
|
||||
</div><br/><div id="buttons" class="card fluid">
|
||||
@@ -789,7 +789,7 @@
|
||||
<span class="code-line"><span class="highlight-a"> </tr></span></span>
|
||||
<span class="code-line"><span class="highlight-a"> </tbody></span></span>
|
||||
<span class="code-line"><span class="highlight-a"></table></span></span></pre></div><div class="col-sm-12 col-md-6"><p><mark class="dont">Don't:</mark> Avoid placing <code><td></code> elements in the <code><thead></code> of your tables, as well as placing <code><th></code> elements in the <code><tbody></code>.</p></div></div></div>
|
||||
<div class="section double-padded"><h3>Notes</h3><ul><li>Remember to always specify a <code>data-label</code> attribute for all of your <code><td></code> elements, otherwise they will not display properly on mobile.</li><li>Due to the way tables are displayed, the <code><tfoot></code> element is not supported.</li><li>Tables are vertically scrollable by default, with a <code>max-height</code> property of <code>400px</code>.</li></ul></div>
|
||||
<div class="section double-padded"><h3>Notes</h3><ul><li>Remember to always specify a <code>data-label</code> attribute for all of your <code><td></code> elements, otherwise they will not display properly on mobile.</li><li>Due to the way tables are displayed, the <code><tfoot></code> element is not supported by default. You can however add <code>table tfoot { order: 3; }</code> to your CSS files to partially support table footers.</li><li>Tables are vertically scrollable by default, with a <code>max-height</code> property of <code>400px</code>.</li></ul></div>
|
||||
<div class="section double-padded"><h3>Customization</h3><ul><li>Text color for <code><th></code> and <code><td></code> elements can be changed by changing the values of the <code>--table-head-fore-color</code> and <code>--table-body-fore-color</code> variables respectively.</li><li>Background color for <code><th></code> and <code><td></code> elements can be changed by changing the values of the <code>--table-head-back-color</code> and <code>--table-body-back-color</code> variables respectively.</li><li>Border color for tables can be changed by changing the value of the <code>--table-border-color</code> variable.</li><li>Border color for the separator between a table's heading and a table's body can be changed by changing the value of the <code>--table-border-separator-color</code> variable.</li><li>Alternative background color for <code><td></code> elements in striped tables can be changed by changing the value of the <code>--table-body-alt-back-color</code> variable.</li><li>Hover background color for <code><tr></code> elements in hoverable tables can be changed by changing the value of the <code>--table-body-hover-back-color</code> variable.</li><li>Universal margin for elements can be changed globally by changing the value of the <code>--universal-margin</code> variable. As a rule of thumb, consider the universal margin to be the distance you want your paragraphs to have from the sides of the screen.</li><li>Universal padding for elements can be changed globally by changing the value of the <code>--universal-padding</code> variable.</li><li>Universal border radius for elements can be changed globally by changing the value of the <code>--universal-border-radius</code> variable.</li></ul></div>
|
||||
</div><br/><div id="text-highlighting" class="card fluid">
|
||||
<h2 class="section double-padded">Text highlighting</h2>
|
||||
@@ -1059,7 +1059,7 @@
|
||||
el.forEach(e => e.innerHTML = '<form action="https://codepen.io/pen/define" method="POST" target="_blank" class="codepen-form">' +
|
||||
'<input type="hidden" name="data" value=\'' + JSON.stringify({
|
||||
html : e.innerText,
|
||||
css_external : "https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.0/mini-default.css"
|
||||
css_external : "https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.css"
|
||||
}).replace(/"/g, """)
|
||||
.replace(/'/g, "'") + '\'>' +
|
||||
'<input type="image" class="codepen-link" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23424242%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolygon%20points%3D%2212%202%2022%208.5%2022%2015.5%2012%2022%202%2015.5%202%208.5%2012%202%22%3E%3C%2Fpolygon%3E%3Cline%20x1%3D%2212%22%20y1%3D%2222%22%20x2%3D%2212%22%20y2%3D%2215.5%22%3E%3C%2Fline%3E%3Cpolyline%20points%3D%2222%208.5%2012%2015.5%202%208.5%22%3E%3C%2Fpolyline%3E%3Cpolyline%20points%3D%222%2015.5%2012%208.5%2022%2015.5%22%3E%3C%2Fpolyline%3E%3Cline%20x1%3D%2212%22%20y1%3D%222%22%20x2%3D%2212%22%20y2%3D%228.5%22%3E%3C%2Fline%3E%3C%2Fsvg%3E" width="40" height="40" value="Open in Codepen">' +
|
||||
|
@@ -1,9 +1,9 @@
|
||||
@charset "UTF-8";
|
||||
/*
|
||||
Flavor name: Dark (mini-dark)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0
|
||||
/*
|
||||
Flavor name: Dark (mini-dark)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -689,8 +689,8 @@ a:hover, a:focus {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
*/
|
||||
@media screen and (min-width: 240px) {
|
||||
.card.small {
|
||||
@@ -986,8 +986,8 @@ input:disabled, input[disabled], textarea:disabled, textarea[disabled], select:d
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
*/
|
||||
button.primary, [type="button"].primary, [type="submit"].primary, [type="reset"].primary, .button.primary, [role="button"].primary {
|
||||
--button-back-color: #1976d2;
|
||||
@@ -1380,14 +1380,15 @@ table.horizontal {
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1397,7 +1398,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1809,8 +1810,8 @@ mark.inline-block {
|
||||
border-radius: 0 0 var(--universal-border-radius) var(--universal-border-radius);
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
*/
|
||||
mark.secondary {
|
||||
--mark-back-color: #d32f2f;
|
||||
@@ -1856,7 +1857,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#aaa);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
@@ -1904,8 +1905,8 @@ progress.inline {
|
||||
animation: spinner-donut-anim 1.2s linear infinite;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
*/
|
||||
progress.primary {
|
||||
--progress-fore-color: #1976d2;
|
||||
|
2
docs/flavorFiles/mini-dark.min.css
vendored
2
docs/flavorFiles/mini-dark.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@
|
||||
Flavor name: Dark (mini-dark)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
$base-root-font-size: 16px; // Root font sizing for all elements (`px` only)
|
||||
$base-line-height: 1.5; // Line height for most elements
|
||||
|
@@ -3,7 +3,7 @@
|
||||
Flavor name: Default (mini-default)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -1378,14 +1378,15 @@ table.horizontal {
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1395,7 +1396,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1854,7 +1855,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#ddd);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
|
2
docs/flavorFiles/mini-default.min.css
vendored
2
docs/flavorFiles/mini-default.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@
|
||||
Flavor name: Default (mini-default)
|
||||
Author: Angelos Chalaris (chalarangelo@gmail.com)
|
||||
Maintainers: Angelos Chalaris
|
||||
mini.css version: v3.0.0-alpha.3
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
@import '../mini/core';
|
||||
@import '../mini/layout';
|
||||
|
@@ -1,9 +1,9 @@
|
||||
@charset "UTF-8";
|
||||
/*
|
||||
Flavor name: Nord (mini-nord)
|
||||
Author: tphecca (https://github.com/tphecca)
|
||||
Maintainers: tphecca
|
||||
mini.css version: v3.0.0
|
||||
/*
|
||||
Flavor name: Nord (mini-nord)
|
||||
Author: tphecca (https://github.com/tphecca)
|
||||
Maintainers: tphecca
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
/*
|
||||
Browsers resets and base typography.
|
||||
@@ -689,8 +689,8 @@ a:hover, a:focus {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
/*
|
||||
Custom elements for card elements.
|
||||
*/
|
||||
@media screen and (min-width: 240px) {
|
||||
.card.small {
|
||||
@@ -983,8 +983,8 @@ input:disabled, input[disabled], textarea:disabled, textarea[disabled], select:d
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
/*
|
||||
Custom elements for forms and input elements.
|
||||
*/
|
||||
button.primary, [type="button"].primary, [type="submit"].primary, [type="reset"].primary, .button.primary, [role="button"].primary {
|
||||
--button-back-color: #5e81ac;
|
||||
@@ -1377,14 +1377,15 @@ table.horizontal {
|
||||
|
||||
table.horizontal thead, table.horizontal tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
table.horizontal tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(--universal-margin));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(--universal-padding) / 4);
|
||||
}
|
||||
|
||||
@@ -1394,7 +1395,7 @@ table.horizontal tr {
|
||||
}
|
||||
|
||||
table.horizontal th, table.horizontal td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: 0.0625rem solid var(--table-border-color);
|
||||
}
|
||||
@@ -1806,8 +1807,8 @@ mark.inline-block {
|
||||
border-radius: 0 0 var(--universal-border-radius) var(--universal-border-radius);
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
/*
|
||||
Custom elements for contextual background elements, toasts and tooltips.
|
||||
*/
|
||||
mark.secondary {
|
||||
--mark-back-color: #bf616a;
|
||||
@@ -1853,7 +1854,7 @@ progress::-webkit-progress-value {
|
||||
}
|
||||
|
||||
progress::-webkit-progress-bar {
|
||||
background: var(#e5e9f0);
|
||||
background: var(--progress-back-color);
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar {
|
||||
@@ -1901,8 +1902,8 @@ progress.inline {
|
||||
animation: spinner-donut-anim 1.2s linear infinite;
|
||||
}
|
||||
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
/*
|
||||
Custom elements for progress bars and spinners.
|
||||
*/
|
||||
progress.primary {
|
||||
--progress-fore-color: #5e81ac;
|
||||
|
2
docs/flavorFiles/mini-nord.min.css
vendored
2
docs/flavorFiles/mini-nord.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@
|
||||
Flavor name: Nord (mini-nord)
|
||||
Author: tphecca (https://github.com/tphecca)
|
||||
Maintainers: tphecca
|
||||
mini.css version: v3.0.0
|
||||
mini.css version: v3.0.1
|
||||
*/
|
||||
// This flavor is based on the Nord color palette: https://github.com/arcticicestudio/nord
|
||||
$base-root-font-size: 16px; // Root font sizing for all elements (`px` only)
|
||||
|
@@ -1408,7 +1408,7 @@
|
||||
flavorFile +='/*\n';
|
||||
flavorFile +=' Flavor name: Custom (mini-custom)\n';
|
||||
flavorFile +=' Generated online - https://minicss.org/flavors\n';
|
||||
flavorFile +=' mini.css version: v3.0.0\n';
|
||||
flavorFile +=' mini.css version: v3.0.1\n';
|
||||
flavorFile +='*/\n';
|
||||
flavorFile +='$base-root-font-size: '+flavorData.core.baseRootFontSize+'px; // Root font sizing for all elements (`px` only)\n';
|
||||
flavorFile +='$base-line-height: '+flavorData.core.baseLineHeight+'; // Line height for most elements\n';
|
||||
@@ -1715,6 +1715,7 @@
|
||||
document.getElementById('generatorStatus').innerHTML = 'Configuring the generator...';
|
||||
var sass = new Sass();
|
||||
sass.options({style: Sass.style.expanded, precision: -1, comments: false, indent: ' ', linefeed: '\n'});
|
||||
console.log(sass);
|
||||
document.getElementById('generatorStatus').innerHTML = 'Loading SCSS files...';
|
||||
sass.preloadFiles(base, directory, files, function filesPreloaded() {
|
||||
document.getElementById('generatorStatus').innerHTML = 'Generating flavor file...';
|
||||
|
@@ -19,7 +19,7 @@
|
||||
<div class="index-splash-image"></div>
|
||||
<h1 class="splash">mini<small>.css</small></h1>
|
||||
<p class="splash">minimal, responsive, style-agnostic <br>CSS framework</p>
|
||||
<p id="version-info">v3.0.0</p>
|
||||
<p id="version-info">v3.0.1</p>
|
||||
<a class="button splash" href="docs">Get started</a>
|
||||
</div>
|
||||
<header class="row sticky">
|
||||
|
@@ -67,7 +67,7 @@ progress {
|
||||
}
|
||||
// Background color on webkit browser
|
||||
&::-webkit-progress-bar {
|
||||
background: var(#{$progress-back-color});
|
||||
background: var(#{$progress-back-color-var});
|
||||
}
|
||||
// Foreground color on Firefox
|
||||
&::-moz-progress-bar {
|
||||
|
@@ -165,13 +165,14 @@ table {
|
||||
border: 0;
|
||||
thead, tbody {
|
||||
border: 0;
|
||||
flex: .2 0 0;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
tbody {
|
||||
overflow: auto;
|
||||
justify-content: space-between;
|
||||
flex: 1 0 0;
|
||||
margin-left: calc( 4 * var(#{$universal-margin-var}));
|
||||
flex: .8 0 0;
|
||||
margin-left: 0;
|
||||
padding-bottom: calc(var(#{$universal-padding-var}) / 4);
|
||||
}
|
||||
tr {
|
||||
@@ -179,7 +180,7 @@ table {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
th, td {
|
||||
width: 100%;
|
||||
width: auto;
|
||||
border: 0;
|
||||
border-bottom: $__1px solid var(#{$table-border-color-var});
|
||||
&:not(:first-child){
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*! sass.js - v0.10.9 (3e41106) - built 2018-02-06
|
||||
providing libsass 3.4.9 (6de5050d)
|
||||
via emscripten 1.37.33 ()
|
||||
/*! sass.js - v0.10.10 (4ca6ca1) - built 2018-07-07
|
||||
providing libsass 3.5.4 (1e52b743)
|
||||
via emscripten 1.37.35 ()
|
||||
*/
|
||||
|
||||
(function (root, factory) {
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*! sass.js - v0.10.9 (3e41106) - built 2018-02-06
|
||||
providing libsass 3.4.9 (6de5050d)
|
||||
via emscripten 1.37.33 ()
|
||||
/*! sass.js - v0.10.10 (4ca6ca1) - built 2018-07-07
|
||||
providing libsass 3.5.4 (1e52b743)
|
||||
via emscripten 1.37.35 ()
|
||||
*/
|
||||
var Sass = require('./sass.sync.js');
|
||||
var fs = require('fs');
|
827
docs/sass.sync.js
Normal file
827
docs/sass.sync.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
docs/style.min.css
vendored
2
docs/style.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
// Get the current version of the Gluon branch.
|
||||
module.exports = {
|
||||
version: 'v3.0.0'
|
||||
version: 'v3.0.1'
|
||||
}
|
||||
|
548
node_modules/core-js/CHANGELOG.md
generated
vendored
548
node_modules/core-js/CHANGELOG.md
generated
vendored
@@ -1,548 +0,0 @@
|
||||
## Changelog
|
||||
##### 2.3.0 - 2016.04.24
|
||||
- Added `asap` for enqueuing microtasks, [stage 0 proposal](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-09/sept-25.md#510-globalasap-for-enqueuing-a-microtask)
|
||||
- Added well-known symbol `Symbol.asyncIterator` for [stage 2 async iteration proposal](https://github.com/tc39/proposal-async-iteration)
|
||||
- Added well-known symbol `Symbol.observable` for [stage 1 observables proposal](https://github.com/zenparsing/es-observable)
|
||||
- `String#{padStart, padEnd}` returns original string if filler is empty string, [T39 meeting notes](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-03/march-29.md#stringprototypepadstartpadend)
|
||||
- `Object.values` and `Object.entries` moved to stage 4 from 3, [T39 meeting notes](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-03/march-29.md#objectvalues--objectentries)
|
||||
- `System.global` moved to stage 2 from 1, [T39 meeting notes](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-03/march-29.md#systemglobal)
|
||||
- `Map#toJSON` and `Set#toJSON` rejected and will be removed from the next major release, [T39 meeting notes](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-03/march-31.md#mapprototypetojsonsetprototypetojson)
|
||||
- `Error.isError` withdrawn and will be removed from the next major release, [T39 meeting notes](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-03/march-29.md#erroriserror)
|
||||
- Added fallback for `Function#name` on non-extensible functions and functions with broken `toString` conversion, [#193](https://github.com/zloirock/core-js/issues/193)
|
||||
|
||||
##### 2.2.2 - 2016.04.06
|
||||
- Added conversion `-0` to `+0` to `Array#{indexOf, lastIndexOf}`, [ES2016 fix](https://github.com/tc39/ecma262/pull/316)
|
||||
- Added fixes for some `Math` methods in Tor Browser
|
||||
- `Array.{from, of}` no longer calls prototype setters
|
||||
- Added workaround over Chrome DevTools strange behavior, [#186](https://github.com/zloirock/core-js/issues/186)
|
||||
|
||||
##### 2.2.1 - 2016.03.19
|
||||
- Fixed `Object.getOwnPropertyNames(window)` `2.1+` versions bug, [#181](https://github.com/zloirock/core-js/issues/181)
|
||||
|
||||
##### 2.2.0 - 2016.03.15
|
||||
- Added `String#matchAll`, [proposal](https://github.com/tc39/String.prototype.matchAll)
|
||||
- Added `Object#__(define|lookup)[GS]etter__`, [annex B ES2017](https://github.com/tc39/ecma262/pull/381)
|
||||
- Added `@@toPrimitive` methods to `Date` and `Symbol`
|
||||
- Fixed `%TypedArray%#slice` in Edge ~ 13 (throws with `@@species` and wrapped / inherited constructor)
|
||||
- Some other minor fixes
|
||||
|
||||
##### 2.1.5 - 2016.03.12
|
||||
- Improved support NodeJS domains in `Promise#then`, [#180](https://github.com/zloirock/core-js/issues/180)
|
||||
- Added fallback for `Date#toJSON` bug in Qt Script, [#173](https://github.com/zloirock/core-js/issues/173#issuecomment-193972502)
|
||||
|
||||
##### 2.1.4 - 2016.03.08
|
||||
- Added fallback for `Symbol` polyfill in Qt Script, [#173](https://github.com/zloirock/core-js/issues/173)
|
||||
- Added one more fallback for IE11 `Script Access Denied` error with iframes, [#165](https://github.com/zloirock/core-js/issues/165)
|
||||
|
||||
##### 2.1.3 - 2016.02.29
|
||||
- Added fallback for [`es6-promise` package bug](https://github.com/stefanpenner/es6-promise/issues/169), [#176](https://github.com/zloirock/core-js/issues/176)
|
||||
|
||||
##### 2.1.2 - 2016.02.29
|
||||
- Some minor `Promise` fixes:
|
||||
- Browsers `rejectionhandled` event better HTML spec complaint
|
||||
- Errors in unhandled rejection handlers should not cause any problems
|
||||
- Fixed typo in feature detection
|
||||
|
||||
##### 2.1.1 - 2016.02.22
|
||||
- Some `Promise` improvements:
|
||||
- Feature detection:
|
||||
- **Added detection unhandled rejection tracking support - now it's available everywhere**, [#140](https://github.com/zloirock/core-js/issues/140)
|
||||
- Added detection `@@species` pattern support for completely correct subclassing
|
||||
- Removed usage `Object.setPrototypeOf` from feature detection and noisy console message about it in FF
|
||||
- `Promise.all` fixed for some very specific cases
|
||||
|
||||
##### 2.1.0 - 2016.02.09
|
||||
- **API**:
|
||||
- ES5 polyfills are split and logic, used in other polyfills, moved to internal modules
|
||||
- **All entry point works in ES3 environment like IE8- without `core-js/(library/)es5`**
|
||||
- **Added all missed single entry points for ES5 polyfills**
|
||||
- Separated ES5 polyfills moved to the ES6 namespace. Why?
|
||||
- Mainly, for prevent duplication features in different namespaces - logic of most required ES5 polyfills changed in ES6+:
|
||||
- Already added changes for: `Object` statics - should accept primitives, new whitespaces lists in `String#trim`, `parse(Int|float)`, `RegExp#toString` logic, `String#split`, etc
|
||||
- Should be changed in the future: `@@species` and `ToLength` logic in `Array` methods, `Date` parsing, `Function#bind`, etc
|
||||
- Should not be changed only several features like `Array.isArray` and `Date.now`
|
||||
- Some ES5 polyfills required for modern engines
|
||||
- All old entry points should work fine, but in the next major release API can be changed
|
||||
- `Object.getOwnPropertyDescriptors` moved to the stage 3, [January TC39 meeting](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-01/2016-01-28.md#objectgetownpropertydescriptors-to-stage-3-jordan-harband-low-priority-but-super-quick)
|
||||
- Added `umd` option for [custom build process](https://github.com/zloirock/core-js#custom-build-from-external-scripts), [#169](https://github.com/zloirock/core-js/issues/169)
|
||||
- Returned entry points for `Array` statics, removed in `2.0`, for compatibility with `babel` `6` and for future fixes
|
||||
- **Deprecated**:
|
||||
- `Reflect.enumerate` deprecated and will be removed from the next major release, [January TC39 meeting](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-01/2016-01-28.md#5xix-revisit-proxy-enumerate---revisit-decision-to-exhaust-iterator)
|
||||
- **New Features**:
|
||||
- Added [`Reflect` metadata API](https://github.com/jonathandturner/decorators/blob/master/specs/metadata.md) as a pre-strawman feature, [#152](https://github.com/zloirock/core-js/issues/152):
|
||||
- `Reflect.defineMetadata`
|
||||
- `Reflect.deleteMetadata`
|
||||
- `Reflect.getMetadata`
|
||||
- `Reflect.getMetadataKeys`
|
||||
- `Reflect.getOwnMetadata`
|
||||
- `Reflect.getOwnMetadataKeys`
|
||||
- `Reflect.hasMetadata`
|
||||
- `Reflect.hasOwnMetadata`
|
||||
- `Reflect.metadata`
|
||||
- Implementation / fixes `Date#toJSON`
|
||||
- Fixes for `parseInt` and `Number.parseInt`
|
||||
- Fixes for `parseFloat` and `Number.parseFloat`
|
||||
- Fixes for `RegExp#toString`
|
||||
- Fixes for `Array#sort`
|
||||
- Fixes for `Number#toFixed`
|
||||
- Fixes for `Number#toPrecision`
|
||||
- Additional fixes for `String#split` (`RegExp#@@split`)
|
||||
- **Improvements**:
|
||||
- Correct subclassing wrapped collections, `Number` and `RegExp` constructors with native class syntax
|
||||
- Correct support `SharedArrayBuffer` and buffers from other realms in typed arrays wrappers
|
||||
- Additional validations for `Object.{defineProperty, getOwnPropertyDescriptor}` and `Reflect.defineProperty`
|
||||
- **Bug Fixes**:
|
||||
- Fixed some cases `Array#lastIndexOf` with negative second argument
|
||||
|
||||
##### 2.0.3 - 2016.01.11
|
||||
- Added fallback for V8 ~ Chrome 49 `Promise` subclassing bug causes unhandled rejection on feature detection, [#159](https://github.com/zloirock/core-js/issues/159)
|
||||
- Added fix for very specific environments with global `window === null`
|
||||
|
||||
##### 2.0.2 - 2016.01.04
|
||||
- Temporarily removed `length` validation from `Uint8Array` constructor wrapper. Reason - [bug in `ws` module](https://github.com/websockets/ws/pull/645) (-> `socket.io`) which passes to `Buffer` constructor -> `Uint8Array` float and uses [the `V8` bug](https://code.google.com/p/v8/issues/detail?id=4552) for conversion to int (by the spec should be thrown an error). [It creates problems for many people.](https://github.com/karma-runner/karma/issues/1768) I hope, it will be returned after fixing this bug in `V8`.
|
||||
|
||||
##### 2.0.1 - 2015.12.31
|
||||
- forced usage `Promise.resolve` polyfill in the `library` version for correct work with wrapper
|
||||
- `Object.assign` should be defined in the strict mode -> throw an error on extension non-extensible objects, [#154](https://github.com/zloirock/core-js/issues/154)
|
||||
|
||||
##### 2.0.0 - 2015.12.24
|
||||
- added implementations and fixes [Typed Arrays](https://github.com/zloirock/core-js#ecmascript-6-typed-arrays)-related features
|
||||
- `ArrayBuffer`, `ArrayBuffer.isView`, `ArrayBuffer#slice`
|
||||
- `DataView` with all getter / setter methods
|
||||
- `Int8Array`, `Uint8Array`, `Uint8ClampedArray`, `Int16Array`, `Uint16Array`, `Int32Array`, `Uint32Array`, `Float32Array` and `Float64Array` constructors
|
||||
- `%TypedArray%.{for, of}`, `%TypedArray%#{copyWithin, every, fill, filter, find, findIndex, forEach, indexOf, includes, join, lastIndexOf, map, reduce, reduceRight, reverse, set, slice, some, sort, subarray, values, keys, entries, @@iterator, ...}`
|
||||
- added [`System.global`](https://github.com/zloirock/core-js#ecmascript-7-proposals), [proposal](https://github.com/tc39/proposal-global), [November TC39 meeting](https://github.com/rwaldron/tc39-notes/tree/master/es7/2015-11/nov-19.md#systemglobal-jhd)
|
||||
- added [`Error.isError`](https://github.com/zloirock/core-js#ecmascript-7-proposals), [proposal](https://github.com/ljharb/proposal-is-error), [November TC39 meeting](https://github.com/rwaldron/tc39-notes/tree/master/es7/2015-11/nov-19.md#jhd-erroriserror)
|
||||
- added [`Math.{iaddh, isubh, imulh, umulh}`](https://github.com/zloirock/core-js#ecmascript-7-proposals), [proposal](https://gist.github.com/BrendanEich/4294d5c212a6d2254703)
|
||||
- `RegExp.escape` moved from the `es7` to the non-standard `core` namespace, [July TC39 meeting](https://github.com/rwaldron/tc39-notes/blob/master/es7/2015-07/july-28.md#62-regexpescape) - too slow, but it's condition of stability, [#116](https://github.com/zloirock/core-js/issues/116)
|
||||
- [`Promise`](https://github.com/zloirock/core-js#ecmascript-6-promise)
|
||||
- some performance optimisations
|
||||
- added basic support [`rejectionHandled` event / `onrejectionhandled` handler](https://github.com/zloirock/core-js#unhandled-rejection-tracking) to the polyfill
|
||||
- removed usage `@@species` from `Promise.{all, race}`, [November TC39 meeting](https://github.com/rwaldron/tc39-notes/tree/master/es7/2015-11/nov-18.md#conclusionresolution-2)
|
||||
- some improvements [collections polyfills](https://github.com/zloirock/core-js#ecmascript-6-collections)
|
||||
- `O(1)` and preventing possible leaks with frozen keys, [#134](https://github.com/zloirock/core-js/issues/134)
|
||||
- correct observable state object keys
|
||||
- renamed `String#{padLeft, padRight}` -> [`String#{padStart, padEnd}`](https://github.com/zloirock/core-js#ecmascript-7-proposals), [proposal](https://github.com/tc39/proposal-string-pad-start-end), [November TC39 meeting](https://github.com/rwaldron/tc39-notes/tree/master/es7/2015-11/nov-17.md#conclusionresolution-2) (they want to rename it on each meeting?O_o), [#132](https://github.com/zloirock/core-js/issues/132)
|
||||
- added [`String#{trimStart, trimEnd}` as aliases for `String#{trimLeft, trimRight}`](https://github.com/zloirock/core-js#ecmascript-7-proposals), [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), [November TC39 meeting](https://github.com/rwaldron/tc39-notes/tree/master/es7/2015-11/nov-17.md#conclusionresolution-2)
|
||||
- added [annex B HTML methods](https://github.com/zloirock/core-js#ecmascript-6-string) - ugly, but also [the part of the spec](http://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.anchor)
|
||||
- added little fix for [`Date#toString`](https://github.com/zloirock/core-js#ecmascript-6-date) - `new Date(NaN).toString()` [should be `'Invalid Date'`](http://www.ecma-international.org/ecma-262/6.0/#sec-todatestring)
|
||||
- added [`{keys, values, entries, @@iterator}` methods to DOM collections](https://github.com/zloirock/core-js#iterable-dom-collections) which should have [iterable interface](https://heycam.github.io/webidl/#idl-iterable) or should be [inherited from `Array`](https://heycam.github.io/webidl/#LegacyArrayClass) - `NodeList`, `DOMTokenList`, `MediaList`, `StyleSheetList`, `CSSRuleList`.
|
||||
- removed Mozilla `Array` generics - [deprecated and will be removed from FF](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array#Array_generic_methods), [looks like strawman is dead](http://wiki.ecmascript.org/doku.php?id=strawman:array_statics), available [alternative shim](https://github.com/plusdude/array-generics)
|
||||
- removed `core.log` module
|
||||
- CommonJS API
|
||||
- added entry points for [virtual methods](https://github.com/zloirock/core-js#commonjs-and-prototype-methods-without-global-namespace-pollution)
|
||||
- added entry points for [stages proposals](https://github.com/zloirock/core-js#ecmascript-7-proposals)
|
||||
- some other minor changes
|
||||
- [custom build from external scripts](https://github.com/zloirock/core-js#custom-build-from-external-scripts) moved to the separate package for preventing problems with dependencies
|
||||
- changed `$` prefix for internal modules file names because Team Foundation Server does not support it, [#129](https://github.com/zloirock/core-js/issues/129)
|
||||
- additional fix for `SameValueZero` in V8 ~ Chromium 39-42 collections
|
||||
- additional fix for FF27 `Array` iterator
|
||||
- removed usage shortcuts for `arguments` object - old WebKit bug, [#150](https://github.com/zloirock/core-js/issues/150)
|
||||
- `{Map, Set}#forEach` non-generic, [#144](https://github.com/zloirock/core-js/issues/144)
|
||||
- many other improvements
|
||||
|
||||
##### 1.2.6 - 2015.11.09
|
||||
* reject with `TypeError` on attempt resolve promise itself
|
||||
* correct behavior with broken `Promise` subclass constructors / methods
|
||||
* added `Promise`-based fallback for microtask
|
||||
* fixed V8 and FF `Array#{values, @@iterator}.name`
|
||||
* fixed IE7- `[1, 2].join(undefined) -> '1,2'`
|
||||
* some other fixes / improvements / optimizations
|
||||
|
||||
##### 1.2.5 - 2015.11.02
|
||||
* some more `Number` constructor fixes:
|
||||
* fixed V8 ~ Node 0.8 bug: `Number('+0x1')` should be `NaN`
|
||||
* fixed `Number(' 0b1\n')` case, should be `1`
|
||||
* fixed `Number()` case, should be `0`
|
||||
|
||||
##### 1.2.4 - 2015.11.01
|
||||
* fixed `Number('0b12') -> NaN` case in the shim
|
||||
* fixed V8 ~ Chromium 40- bug - `Weak(Map|Set)#{delete, get, has}` should not throw errors [#124](https://github.com/zloirock/core-js/issues/124)
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.2.3 - 2015.10.23
|
||||
* fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
|
||||
* fixed `.name` property and `Function#toString` conversion some polyfilled methods
|
||||
* fixed `Math.imul` arity in Safari 8-
|
||||
|
||||
##### 1.2.2 - 2015.10.18
|
||||
* improved optimisations for V8
|
||||
* fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
|
||||
* one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
|
||||
|
||||
##### 1.2.1 - 2015.10.02
|
||||
* replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
|
||||
* fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
|
||||
|
||||
##### 1.2.0 - 2015.09.27
|
||||
* added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
|
||||
* added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
|
||||
* updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7-proposals) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
|
||||
* replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
|
||||
* fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)`}`, [example](http://goo.gl/iQE01c)
|
||||
* fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.1.4 - 2015.09.05
|
||||
* fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
|
||||
* fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.1.3 - 2015.08.29
|
||||
* fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
|
||||
|
||||
##### 1.1.2 - 2015.08.28
|
||||
* added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
|
||||
* replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
|
||||
* fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
|
||||
|
||||
##### 1.1.1 - 2015.08.20
|
||||
* added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
|
||||
|
||||
##### 1.1.0 - 2015.08.17
|
||||
* updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7-proposals) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
|
||||
* `String#lpad` -> `String#padLeft`
|
||||
* `String#rpad` -> `String#padRight`
|
||||
* added [string trim functions](#ecmascript-7-proposals) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
|
||||
* `String#trimLeft`
|
||||
* `String#trimRight`
|
||||
* [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
|
||||
* splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
|
||||
* `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
|
||||
* increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
|
||||
* does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
|
||||
* [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
|
||||
* simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
|
||||
* some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
* fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
|
||||
* some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
|
||||
* some other fixes and optimizations
|
||||
|
||||
##### 1.0.1 - 2015.07.31
|
||||
* some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
|
||||
* some minor fixes and optimizations
|
||||
* changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
|
||||
|
||||
##### 1.0.0 - 2015.07.22
|
||||
* added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
|
||||
* `Symbol.match`
|
||||
* `Symbol.replace`
|
||||
* `Symbol.split`
|
||||
* `Symbol.search`
|
||||
* actualized and optimized work with iterables:
|
||||
* optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
|
||||
* optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
|
||||
* added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
|
||||
* uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
|
||||
* added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
|
||||
* added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
|
||||
* removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
|
||||
* maximum modularity, reduced minimal custom build size, separated into submodules:
|
||||
* [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
|
||||
* [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
|
||||
* [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
* [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
|
||||
* [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* [`core.object`](https://github.com/zloirock/core-js/#object)
|
||||
* [`core.string`](https://github.com/zloirock/core-js/#escaping-strings)
|
||||
* [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
|
||||
* internal modules (`$`, `$.iter`, etc)
|
||||
* many other optimizations
|
||||
* final cleaning non-standard features
|
||||
* moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
|
||||
* moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
|
||||
* removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
|
||||
* removed `{Array#, Array, Dict}.turn`
|
||||
* removed `core.global`
|
||||
* uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
|
||||
* fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
|
||||
* fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
|
||||
* fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
|
||||
|
||||
##### 0.9.18 - 2015.06.17
|
||||
* removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7-proposals) escaped characters
|
||||
|
||||
##### 0.9.17 - 2015.06.14
|
||||
* updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7-proposals) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
|
||||
* fixed conflict with webpack dev server + IE buggy behavior
|
||||
|
||||
##### 0.9.16 - 2015.06.11
|
||||
* more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
|
||||
* uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
|
||||
|
||||
##### 0.9.15 - 2015.06.09
|
||||
* [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
|
||||
* fixed collections prototype methods in `library` version
|
||||
* optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
|
||||
|
||||
##### 0.9.14 - 2015.06.04
|
||||
* updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
|
||||
* added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.13 - 2015.05.25
|
||||
* added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.12 - 2015.05.24
|
||||
* different instances `core-js` should use / recognize the same symbols
|
||||
* some fixes
|
||||
|
||||
##### 0.9.11 - 2015.05.18
|
||||
* simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
|
||||
* add custom build js api
|
||||
* added `grunt-cli` to `devDependencies` for `npm run grunt`
|
||||
* some fixes
|
||||
|
||||
##### 0.9.10 - 2015.05.16
|
||||
* wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
|
||||
* added proto versions of methods to export object in `default` version for consistency with `library` version
|
||||
|
||||
##### 0.9.9 - 2015.05.14
|
||||
* wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
|
||||
* [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
|
||||
* some other fixes
|
||||
|
||||
##### 0.9.8 - 2015.05.12
|
||||
* fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
|
||||
* added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
|
||||
|
||||
##### 0.9.7 - 2015.05.07
|
||||
* added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
|
||||
|
||||
##### 0.9.6 - 2015.05.01
|
||||
* added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
|
||||
##### 0.9.5 - 2015.04.30
|
||||
* added cap for `Function#@@hasInstance`
|
||||
* some fixes and optimizations
|
||||
|
||||
##### 0.9.4 - 2015.04.27
|
||||
* fixed `RegExp` constructor
|
||||
|
||||
##### 0.9.3 - 2015.04.26
|
||||
* some fixes and optimizations
|
||||
|
||||
##### 0.9.2 - 2015.04.25
|
||||
* more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
|
||||
|
||||
##### 0.9.1 - 2015.04.25
|
||||
* fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
|
||||
|
||||
##### 0.9.0 - 2015.04.24
|
||||
* added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
|
||||
* fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
|
||||
* added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
|
||||
* added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
|
||||
* removed non-standard undocumented methods `Symbol.{pure, set}`
|
||||
* some fixes and internal changes
|
||||
|
||||
##### 0.8.4 - 2015.04.18
|
||||
* uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
|
||||
|
||||
##### 0.8.3 - 2015.04.14
|
||||
* fixed `Array` statics with single entry points
|
||||
|
||||
##### 0.8.2 - 2015.04.13
|
||||
* [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
|
||||
* added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* some optimizations and fixes
|
||||
|
||||
##### 0.8.1 - 2015.04.03
|
||||
* fixed `Symbol.keyFor`
|
||||
|
||||
##### 0.8.0 - 2015.04.02
|
||||
* changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
|
||||
* splitted and renamed some modules
|
||||
* added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
|
||||
* removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
|
||||
* [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
|
||||
* fixed iterators support in v8 `Promise.all` and `Promise.race`
|
||||
* many other fixes
|
||||
|
||||
##### 0.7.2 - 2015.03.09
|
||||
* some fixes
|
||||
|
||||
##### 0.7.1 - 2015.03.07
|
||||
* some fixes
|
||||
|
||||
##### 0.7.0 - 2015.03.06
|
||||
* rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
|
||||
|
||||
##### 0.6.1 - 2015.02.24
|
||||
* fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
|
||||
|
||||
##### 0.6.0 - 2015.02.23
|
||||
* added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
|
||||
* added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
|
||||
* added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* removed `console` cap - creates too many problems
|
||||
* restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
|
||||
* some fixes
|
||||
|
||||
##### 0.5.4 - 2015.02.15
|
||||
* some fixes
|
||||
|
||||
##### 0.5.3 - 2015.02.14
|
||||
* added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
|
||||
* added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
|
||||
|
||||
##### 0.5.2 - 2015.02.10
|
||||
* some fixes
|
||||
|
||||
##### 0.5.1 - 2015.02.09
|
||||
* some fixes
|
||||
|
||||
##### 0.5.0 - 2015.02.08
|
||||
* systematization of modules
|
||||
* splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
|
||||
* splitted `console` module: `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
|
||||
* added [`delay` method](https://github.com/zloirock/core-js/#delay)
|
||||
* some fixes
|
||||
|
||||
##### 0.4.10 - 2015.01.28
|
||||
* [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
|
||||
|
||||
##### 0.4.9 - 2015.01.27
|
||||
* FF20-24 fix
|
||||
|
||||
##### 0.4.8 - 2015.01.25
|
||||
* some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
|
||||
|
||||
##### 0.4.7 - 2015.01.25
|
||||
* added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
|
||||
|
||||
##### 0.4.6 - 2015.01.21
|
||||
* added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
|
||||
* added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
|
||||
* added basic `@@species` logic - getter in native constructors
|
||||
* removed `Function#by`
|
||||
* some fixes
|
||||
|
||||
##### 0.4.5 - 2015.01.16
|
||||
* some fixes
|
||||
|
||||
##### 0.4.4 - 2015.01.11
|
||||
* enabled CSP support
|
||||
|
||||
##### 0.4.3 - 2015.01.10
|
||||
* added `Function` instances `name` property for IE9+
|
||||
|
||||
##### 0.4.2 - 2015.01.10
|
||||
* `Object` static methods accept primitives
|
||||
* `RegExp` constructor can alter flags (IE9+)
|
||||
* added `Array.prototype[Symbol.unscopables]`
|
||||
|
||||
##### 0.4.1 - 2015.01.05
|
||||
* some fixes
|
||||
|
||||
##### 0.4.0 - 2015.01.03
|
||||
* added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
|
||||
* added `Reflect.apply`
|
||||
* added `Reflect.construct`
|
||||
* added `Reflect.defineProperty`
|
||||
* added `Reflect.deleteProperty`
|
||||
* added `Reflect.enumerate`
|
||||
* added `Reflect.get`
|
||||
* added `Reflect.getOwnPropertyDescriptor`
|
||||
* added `Reflect.getPrototypeOf`
|
||||
* added `Reflect.has`
|
||||
* added `Reflect.isExtensible`
|
||||
* added `Reflect.preventExtensions`
|
||||
* added `Reflect.set`
|
||||
* added `Reflect.setPrototypeOf`
|
||||
* `core-js` methods now can use external `Symbol.iterator` polyfill
|
||||
* some fixes
|
||||
|
||||
##### 0.3.3 - 2014.12.28
|
||||
* [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
|
||||
|
||||
##### 0.3.2 - 2014.12.25
|
||||
* added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
|
||||
* fixed `console` bug
|
||||
|
||||
##### 0.3.1 - 2014.12.23
|
||||
* some fixes
|
||||
|
||||
##### 0.3.0 - 2014.12.23
|
||||
* Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
|
||||
* use entries chain on hash table
|
||||
* fast & correct iteration
|
||||
* iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
|
||||
|
||||
##### 0.2.5 - 2014.12.20
|
||||
* `console` no longer shortcut for `console.log` (compatibility problems)
|
||||
* some fixes
|
||||
|
||||
##### 0.2.4 - 2014.12.17
|
||||
* better compliance of ES6
|
||||
* added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
|
||||
* some fixes
|
||||
|
||||
##### 0.2.3 - 2014.12.15
|
||||
* [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
|
||||
* added option to disable addition setter to `Object.prototype` for Symbol polyfill:
|
||||
* added `Symbol.useSimple`
|
||||
* added `Symbol.useSetter`
|
||||
* added cap for well-known Symbols:
|
||||
* added `Symbol.hasInstance`
|
||||
* added `Symbol.isConcatSpreadable`
|
||||
* added `Symbol.match`
|
||||
* added `Symbol.replace`
|
||||
* added `Symbol.search`
|
||||
* added `Symbol.species`
|
||||
* added `Symbol.split`
|
||||
* added `Symbol.toPrimitive`
|
||||
* added `Symbol.unscopables`
|
||||
|
||||
##### 0.2.2 - 2014.12.13
|
||||
* added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
|
||||
* added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
|
||||
##### 0.2.1 - 2014.12.12
|
||||
* repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
|
||||
|
||||
##### 0.2.0 - 2014.12.06
|
||||
* added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7-proposals) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
|
||||
* added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
|
||||
* added abstract references support:
|
||||
* added `Symbol.referenceGet`
|
||||
* added `Symbol.referenceSet`
|
||||
* added `Symbol.referenceDelete`
|
||||
* added `Function#@@referenceGet`
|
||||
* added `Map#@@referenceGet`
|
||||
* added `Map#@@referenceSet`
|
||||
* added `Map#@@referenceDelete`
|
||||
* added `WeakMap#@@referenceGet`
|
||||
* added `WeakMap#@@referenceSet`
|
||||
* added `WeakMap#@@referenceDelete`
|
||||
* added `Dict.{...methods}[@@referenceGet]`
|
||||
* removed deprecated `.contains` methods
|
||||
* some fixes
|
||||
|
||||
##### 0.1.5 - 2014.12.01
|
||||
* added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
|
||||
* added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
* added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
|
||||
##### 0.1.4 - 2014.11.27
|
||||
* added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
|
||||
|
||||
##### 0.1.3 - 2014.11.20
|
||||
* [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
|
||||
* [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
|
||||
* `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
|
||||
* `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7-proposals)
|
||||
* `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
|
||||
* [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
|
||||
* [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
|
||||
|
||||
##### 0.1.2 - 2014.11.19
|
||||
* `Map` & `Set` bug fix
|
||||
|
||||
##### 0.1.1 - 2014.11.18
|
||||
* public release
|
2
node_modules/core-js/Gruntfile.js
generated
vendored
2
node_modules/core-js/Gruntfile.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('LiveScript');
|
||||
module.exports = require('./build/Gruntfile');
|
19
node_modules/core-js/LICENSE
generated
vendored
19
node_modules/core-js/LICENSE
generated
vendored
@@ -1,19 +0,0 @@
|
||||
Copyright (c) 2014-2016 Denis Pushkarev
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
1987
node_modules/core-js/README.md
generated
vendored
1987
node_modules/core-js/README.md
generated
vendored
File diff suppressed because it is too large
Load Diff
47
node_modules/core-js/bower.json
generated
vendored
47
node_modules/core-js/bower.json
generated
vendored
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"name": "core.js",
|
||||
"main": "client/core.js",
|
||||
"version": "2.3.0",
|
||||
"description": "Standard Library",
|
||||
"keywords": [
|
||||
"ES3",
|
||||
"ECMAScript 3",
|
||||
"ES5",
|
||||
"ECMAScript 5",
|
||||
"ES6",
|
||||
"ES2015",
|
||||
"ECMAScript 6",
|
||||
"ECMAScript 2015",
|
||||
"ES7",
|
||||
"ES2016",
|
||||
"ECMAScript 7",
|
||||
"ECMAScript 2016",
|
||||
"Harmony",
|
||||
"Strawman",
|
||||
"Map",
|
||||
"Set",
|
||||
"WeakMap",
|
||||
"WeakSet",
|
||||
"Promise",
|
||||
"Symbol",
|
||||
"TypedArray",
|
||||
"setImmediate",
|
||||
"Dict",
|
||||
"polyfill",
|
||||
"shim"
|
||||
],
|
||||
"authors": [
|
||||
"Denis Pushkarev <zloirock@zloirock.ru> (http://zloirock.ru/)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/zloirock/core-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zloirock/core-js.git"
|
||||
},
|
||||
"ignore": [
|
||||
"build",
|
||||
"node_modules",
|
||||
"tests"
|
||||
]
|
||||
}
|
84
node_modules/core-js/build/Gruntfile.ls
generated
vendored
84
node_modules/core-js/build/Gruntfile.ls
generated
vendored
@@ -1,84 +0,0 @@
|
||||
require! <[./build fs ./config]>
|
||||
module.exports = (grunt)->
|
||||
grunt.loadNpmTasks \grunt-contrib-clean
|
||||
grunt.loadNpmTasks \grunt-contrib-copy
|
||||
grunt.loadNpmTasks \grunt-contrib-uglify
|
||||
grunt.loadNpmTasks \grunt-contrib-watch
|
||||
grunt.loadNpmTasks \grunt-livescript
|
||||
grunt.loadNpmTasks \grunt-karma
|
||||
grunt.initConfig do
|
||||
pkg: grunt.file.readJSON './package.json'
|
||||
uglify: build:
|
||||
files: '<%=grunt.option("path")%>.min.js': '<%=grunt.option("path")%>.js'
|
||||
options:
|
||||
mangle: {+sort, +keep_fnames}
|
||||
compress: {+pure_getters, +keep_fargs, +keep_fnames}
|
||||
sourceMap: on
|
||||
banner: config.banner
|
||||
livescript: src: files:
|
||||
'./tests/helpers.js': './tests/helpers/*'
|
||||
'./tests/tests.js': './tests/tests/*'
|
||||
'./tests/library.js': './tests/library/*'
|
||||
'./tests/es.js': './tests/tests/es*'
|
||||
'./tests/experimental.js': './tests/experimental/*'
|
||||
'./build/index.js': './build/build.ls*'
|
||||
clean: <[./library]>
|
||||
copy: lib: files:
|
||||
* expand: on
|
||||
cwd: './'
|
||||
src: <[es5/** es6/** es7/** stage/** web/** core/** fn/** index.js shim.js]>
|
||||
dest: './library/'
|
||||
* expand: on
|
||||
cwd: './'
|
||||
src: <[modules/*]>
|
||||
dest: './library/'
|
||||
filter: \isFile
|
||||
* expand: on
|
||||
cwd: './modules/library/'
|
||||
src: '*'
|
||||
dest: './library/modules/'
|
||||
watch:
|
||||
core:
|
||||
files: './modules/*'
|
||||
tasks: \default
|
||||
tests:
|
||||
files: './tests/tests/*'
|
||||
tasks: \livescript
|
||||
karma:
|
||||
'options':
|
||||
configFile: './tests/karma.conf.js'
|
||||
browsers: <[PhantomJS]>
|
||||
singleRun: on
|
||||
'default': {}
|
||||
'library': files: <[client/library.js tests/helpers.js tests/library.js]>map -> src: it
|
||||
grunt.registerTask \build (options)->
|
||||
done = @async!
|
||||
build {
|
||||
modules: (options || 'es5,es6,es7,js,web,core')split \,
|
||||
blacklist: (grunt.option(\blacklist) || '')split \,
|
||||
library: grunt.option(\library) in <[yes on true]>
|
||||
umd: grunt.option(\umd) not in <[no off false]>
|
||||
}
|
||||
.then !->
|
||||
grunt.option(\path) || grunt.option(\path, './custom')
|
||||
fs.writeFile grunt.option(\path) + '.js', it, done
|
||||
.catch !->
|
||||
console.error it
|
||||
process.exit 1
|
||||
grunt.registerTask \client ->
|
||||
grunt.option \library ''
|
||||
grunt.option \path './client/core'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
||||
grunt.registerTask \library ->
|
||||
grunt.option \library 'true'
|
||||
grunt.option \path './client/library'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core uglify]>
|
||||
grunt.registerTask \shim ->
|
||||
grunt.option \library ''
|
||||
grunt.option \path './client/shim'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web uglify]>
|
||||
grunt.registerTask \e ->
|
||||
grunt.option \library ''>
|
||||
grunt.option \path './client/core'
|
||||
grunt.task.run <[build:es5,es6,es7,js,web,core,exp uglify]>
|
||||
grunt.registerTask \default <[clean copy client library shim]>
|
62
node_modules/core-js/build/build.ls
generated
vendored
62
node_modules/core-js/build/build.ls
generated
vendored
@@ -1,62 +0,0 @@
|
||||
require! {
|
||||
'../library/fn/promise': Promise
|
||||
'./config': {list, experimental, libraryBlacklist, es5SpecialCase, banner}
|
||||
fs: {readFile, writeFile, unlink}
|
||||
path: {join}
|
||||
webpack, temp
|
||||
}
|
||||
|
||||
module.exports = ({modules = [], blacklist = [], library = no, umd = on})->
|
||||
resolve, reject <~! new Promise _
|
||||
let @ = modules.reduce ((memo, it)-> memo[it] = on; memo), {}
|
||||
if @exp => for experimental => @[..] = on
|
||||
if @es5 => for es5SpecialCase => @[..] = on
|
||||
for ns of @
|
||||
if @[ns]
|
||||
for name in list
|
||||
if name.indexOf("#ns.") is 0 and name not in experimental
|
||||
@[name] = on
|
||||
|
||||
if library => blacklist ++= libraryBlacklist
|
||||
for ns in blacklist
|
||||
for name in list
|
||||
if name is ns or name.indexOf("#ns.") is 0
|
||||
@[name] = no
|
||||
|
||||
TARGET = temp.path {suffix: '.js'}
|
||||
|
||||
err, info <~! webpack do
|
||||
entry: list.filter(~> @[it]).map ~>
|
||||
if library => join __dirname, '..', 'library', 'modules', it
|
||||
else join __dirname, '..', 'modules', it
|
||||
output:
|
||||
path: ''
|
||||
filename: TARGET
|
||||
if err => return reject err
|
||||
|
||||
err, script <~! readFile TARGET
|
||||
if err => return reject err
|
||||
|
||||
err <~! unlink TARGET
|
||||
if err => return reject err
|
||||
|
||||
if umd
|
||||
exportScript = """
|
||||
// CommonJS export
|
||||
if(typeof module != 'undefined' && module.exports)module.exports = __e;
|
||||
// RequireJS export
|
||||
else if(typeof define == 'function' && define.amd)define(function(){return __e});
|
||||
// Export to global object
|
||||
else __g.core = __e;
|
||||
"""
|
||||
else
|
||||
exportScript = ""
|
||||
|
||||
resolve """
|
||||
#banner
|
||||
!function(__e, __g, undefined){
|
||||
'use strict';
|
||||
#script
|
||||
#exportScript
|
||||
}(1, 1);
|
||||
"""
|
252
node_modules/core-js/build/config.js
generated
vendored
252
node_modules/core-js/build/config.js
generated
vendored
@@ -1,252 +0,0 @@
|
||||
module.exports = {
|
||||
list: [
|
||||
'es6.symbol',
|
||||
'es6.object.define-property',
|
||||
'es6.object.define-properties',
|
||||
'es6.object.get-own-property-descriptor',
|
||||
'es6.object.create',
|
||||
'es6.object.get-prototype-of',
|
||||
'es6.object.keys',
|
||||
'es6.object.get-own-property-names',
|
||||
'es6.object.freeze',
|
||||
'es6.object.seal',
|
||||
'es6.object.prevent-extensions',
|
||||
'es6.object.is-frozen',
|
||||
'es6.object.is-sealed',
|
||||
'es6.object.is-extensible',
|
||||
'es6.object.assign',
|
||||
'es6.object.is',
|
||||
'es6.object.set-prototype-of',
|
||||
'es6.object.to-string',
|
||||
'es6.function.bind',
|
||||
'es6.function.name',
|
||||
'es6.function.has-instance',
|
||||
'es6.number.constructor',
|
||||
'es6.number.to-fixed',
|
||||
'es6.number.to-precision',
|
||||
'es6.number.epsilon',
|
||||
'es6.number.is-finite',
|
||||
'es6.number.is-integer',
|
||||
'es6.number.is-nan',
|
||||
'es6.number.is-safe-integer',
|
||||
'es6.number.max-safe-integer',
|
||||
'es6.number.min-safe-integer',
|
||||
'es6.number.parse-float',
|
||||
'es6.number.parse-int',
|
||||
'es6.parse-int',
|
||||
'es6.parse-float',
|
||||
'es6.math.acosh',
|
||||
'es6.math.asinh',
|
||||
'es6.math.atanh',
|
||||
'es6.math.cbrt',
|
||||
'es6.math.clz32',
|
||||
'es6.math.cosh',
|
||||
'es6.math.expm1',
|
||||
'es6.math.fround',
|
||||
'es6.math.hypot',
|
||||
'es6.math.imul',
|
||||
'es6.math.log10',
|
||||
'es6.math.log1p',
|
||||
'es6.math.log2',
|
||||
'es6.math.sign',
|
||||
'es6.math.sinh',
|
||||
'es6.math.tanh',
|
||||
'es6.math.trunc',
|
||||
'es6.string.from-code-point',
|
||||
'es6.string.raw',
|
||||
'es6.string.trim',
|
||||
'es6.string.code-point-at',
|
||||
'es6.string.ends-with',
|
||||
'es6.string.includes',
|
||||
'es6.string.repeat',
|
||||
'es6.string.starts-with',
|
||||
'es6.string.iterator',
|
||||
'es6.string.anchor',
|
||||
'es6.string.big',
|
||||
'es6.string.blink',
|
||||
'es6.string.bold',
|
||||
'es6.string.fixed',
|
||||
'es6.string.fontcolor',
|
||||
'es6.string.fontsize',
|
||||
'es6.string.italics',
|
||||
'es6.string.link',
|
||||
'es6.string.small',
|
||||
'es6.string.strike',
|
||||
'es6.string.sub',
|
||||
'es6.string.sup',
|
||||
'es6.array.is-array',
|
||||
'es6.array.from',
|
||||
'es6.array.of',
|
||||
'es6.array.join',
|
||||
'es6.array.slice',
|
||||
'es6.array.sort',
|
||||
'es6.array.for-each',
|
||||
'es6.array.map',
|
||||
'es6.array.filter',
|
||||
'es6.array.some',
|
||||
'es6.array.every',
|
||||
'es6.array.reduce',
|
||||
'es6.array.reduce-right',
|
||||
'es6.array.index-of',
|
||||
'es6.array.last-index-of',
|
||||
'es6.array.copy-within',
|
||||
'es6.array.fill',
|
||||
'es6.array.find',
|
||||
'es6.array.find-index',
|
||||
'es6.array.iterator',
|
||||
'es6.array.species',
|
||||
'es6.regexp.constructor',
|
||||
'es6.regexp.to-string',
|
||||
'es6.regexp.flags',
|
||||
'es6.regexp.match',
|
||||
'es6.regexp.replace',
|
||||
'es6.regexp.search',
|
||||
'es6.regexp.split',
|
||||
'es6.promise',
|
||||
'es6.map',
|
||||
'es6.set',
|
||||
'es6.weak-map',
|
||||
'es6.weak-set',
|
||||
'es6.reflect.apply',
|
||||
'es6.reflect.construct',
|
||||
'es6.reflect.define-property',
|
||||
'es6.reflect.delete-property',
|
||||
'es6.reflect.enumerate',
|
||||
'es6.reflect.get',
|
||||
'es6.reflect.get-own-property-descriptor',
|
||||
'es6.reflect.get-prototype-of',
|
||||
'es6.reflect.has',
|
||||
'es6.reflect.is-extensible',
|
||||
'es6.reflect.own-keys',
|
||||
'es6.reflect.prevent-extensions',
|
||||
'es6.reflect.set',
|
||||
'es6.reflect.set-prototype-of',
|
||||
'es6.date.now',
|
||||
'es6.date.to-json',
|
||||
'es6.date.to-iso-string',
|
||||
'es6.date.to-string',
|
||||
'es6.date.to-primitive',
|
||||
'es6.typed.array-buffer',
|
||||
'es6.typed.data-view',
|
||||
'es6.typed.int8-array',
|
||||
'es6.typed.uint8-array',
|
||||
'es6.typed.uint8-clamped-array',
|
||||
'es6.typed.int16-array',
|
||||
'es6.typed.uint16-array',
|
||||
'es6.typed.int32-array',
|
||||
'es6.typed.uint32-array',
|
||||
'es6.typed.float32-array',
|
||||
'es6.typed.float64-array',
|
||||
'es7.array.includes',
|
||||
'es7.string.at',
|
||||
'es7.string.pad-start',
|
||||
'es7.string.pad-end',
|
||||
'es7.string.trim-left',
|
||||
'es7.string.trim-right',
|
||||
'es7.string.match-all',
|
||||
'es7.symbol.async-iterator',
|
||||
'es7.symbol.observable',
|
||||
'es7.object.get-own-property-descriptors',
|
||||
'es7.object.values',
|
||||
'es7.object.entries',
|
||||
'es7.object.define-getter',
|
||||
'es7.object.define-setter',
|
||||
'es7.object.lookup-getter',
|
||||
'es7.object.lookup-setter',
|
||||
'es7.map.to-json',
|
||||
'es7.set.to-json',
|
||||
'es7.system.global',
|
||||
'es7.error.is-error',
|
||||
'es7.math.iaddh',
|
||||
'es7.math.isubh',
|
||||
'es7.math.imulh',
|
||||
'es7.math.umulh',
|
||||
'es7.reflect.define-metadata',
|
||||
'es7.reflect.delete-metadata',
|
||||
'es7.reflect.get-metadata',
|
||||
'es7.reflect.get-metadata-keys',
|
||||
'es7.reflect.get-own-metadata',
|
||||
'es7.reflect.get-own-metadata-keys',
|
||||
'es7.reflect.has-metadata',
|
||||
'es7.reflect.has-own-metadata',
|
||||
'es7.reflect.metadata',
|
||||
'es7.asap',
|
||||
'web.immediate',
|
||||
'web.dom.iterable',
|
||||
'web.timers',
|
||||
'core.dict',
|
||||
'core.get-iterator-method',
|
||||
'core.get-iterator',
|
||||
'core.is-iterable',
|
||||
'core.delay',
|
||||
'core.function.part',
|
||||
'core.object.is-object',
|
||||
'core.object.classof',
|
||||
'core.object.define',
|
||||
'core.object.make',
|
||||
'core.number.iterator',
|
||||
'core.regexp.escape',
|
||||
'core.string.escape-html',
|
||||
'core.string.unescape-html'
|
||||
],
|
||||
experimental: [
|
||||
],
|
||||
libraryBlacklist: [
|
||||
'es6.object.to-string',
|
||||
'es6.function.name',
|
||||
'es6.regexp.constructor',
|
||||
'es6.regexp.to-string',
|
||||
'es6.regexp.flags',
|
||||
'es6.regexp.match',
|
||||
'es6.regexp.replace',
|
||||
'es6.regexp.search',
|
||||
'es6.regexp.split',
|
||||
'es6.number.constructor',
|
||||
'es6.date.to-string',
|
||||
'es6.date.to-primitive'
|
||||
],
|
||||
es5SpecialCase: [
|
||||
'es6.object.create',
|
||||
'es6.object.define-property',
|
||||
'es6.object.define-properties',
|
||||
'es6.object.get-own-property-descriptor',
|
||||
'es6.object.get-prototype-of',
|
||||
'es6.object.keys',
|
||||
'es6.object.get-own-property-names',
|
||||
'es6.object.freeze',
|
||||
'es6.object.seal',
|
||||
'es6.object.prevent-extensions',
|
||||
'es6.object.is-frozen',
|
||||
'es6.object.is-sealed',
|
||||
'es6.object.is-extensible',
|
||||
'es6.function.bind',
|
||||
'es6.array.is-array',
|
||||
'es6.array.join',
|
||||
'es6.array.slice',
|
||||
'es6.array.sort',
|
||||
'es6.array.for-each',
|
||||
'es6.array.map',
|
||||
'es6.array.filter',
|
||||
'es6.array.some',
|
||||
'es6.array.every',
|
||||
'es6.array.reduce',
|
||||
'es6.array.reduce-right',
|
||||
'es6.array.index-of',
|
||||
'es6.array.last-index-of',
|
||||
'es6.number.to-fixed',
|
||||
'es6.number.to-precision',
|
||||
'es6.date.now',
|
||||
'es6.date.to-iso-string',
|
||||
'es6.date.to-json',
|
||||
'es6.string.trim',
|
||||
'es6.regexp.to-string',
|
||||
'es6.parse-int',
|
||||
'es6.parse-float'
|
||||
],
|
||||
banner: '/**\n' +
|
||||
' * core-js ' + require('../package').version + '\n' +
|
||||
' * https://github.com/zloirock/core-js\n' +
|
||||
' * License: http://rock.mit-license.org\n' +
|
||||
' * © ' + new Date().getFullYear() + ' Denis Pushkarev\n' +
|
||||
' */'
|
||||
};
|
104
node_modules/core-js/build/index.js
generated
vendored
104
node_modules/core-js/build/index.js
generated
vendored
@@ -1,104 +0,0 @@
|
||||
// Generated by LiveScript 1.4.0
|
||||
(function(){
|
||||
var Promise, ref$, list, experimental, libraryBlacklist, es5SpecialCase, banner, readFile, writeFile, unlink, join, webpack, temp;
|
||||
Promise = require('../library/fn/promise');
|
||||
ref$ = require('./config'), list = ref$.list, experimental = ref$.experimental, libraryBlacklist = ref$.libraryBlacklist, es5SpecialCase = ref$.es5SpecialCase, banner = ref$.banner;
|
||||
ref$ = require('fs'), readFile = ref$.readFile, writeFile = ref$.writeFile, unlink = ref$.unlink;
|
||||
join = require('path').join;
|
||||
webpack = require('webpack');
|
||||
temp = require('temp');
|
||||
module.exports = function(arg$){
|
||||
var modules, ref$, blacklist, library, umd, this$ = this;
|
||||
modules = (ref$ = arg$.modules) != null
|
||||
? ref$
|
||||
: [], blacklist = (ref$ = arg$.blacklist) != null
|
||||
? ref$
|
||||
: [], library = (ref$ = arg$.library) != null ? ref$ : false, umd = (ref$ = arg$.umd) != null ? ref$ : true;
|
||||
return new Promise(function(resolve, reject){
|
||||
(function(){
|
||||
var i$, x$, ref$, len$, y$, ns, name, j$, len1$, TARGET, this$ = this;
|
||||
if (this.exp) {
|
||||
for (i$ = 0, len$ = (ref$ = experimental).length; i$ < len$; ++i$) {
|
||||
x$ = ref$[i$];
|
||||
this[x$] = true;
|
||||
}
|
||||
}
|
||||
if (this.es5) {
|
||||
for (i$ = 0, len$ = (ref$ = es5SpecialCase).length; i$ < len$; ++i$) {
|
||||
y$ = ref$[i$];
|
||||
this[y$] = true;
|
||||
}
|
||||
}
|
||||
for (ns in this) {
|
||||
if (this[ns]) {
|
||||
for (i$ = 0, len$ = (ref$ = list).length; i$ < len$; ++i$) {
|
||||
name = ref$[i$];
|
||||
if (name.indexOf(ns + ".") === 0 && !in$(name, experimental)) {
|
||||
this[name] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (library) {
|
||||
blacklist = blacklist.concat(libraryBlacklist);
|
||||
}
|
||||
for (i$ = 0, len$ = blacklist.length; i$ < len$; ++i$) {
|
||||
ns = blacklist[i$];
|
||||
for (j$ = 0, len1$ = (ref$ = list).length; j$ < len1$; ++j$) {
|
||||
name = ref$[j$];
|
||||
if (name === ns || name.indexOf(ns + ".") === 0) {
|
||||
this[name] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
TARGET = temp.path({
|
||||
suffix: '.js'
|
||||
});
|
||||
webpack({
|
||||
entry: list.filter(function(it){
|
||||
return this$[it];
|
||||
}).map(function(it){
|
||||
if (library) {
|
||||
return join(__dirname, '..', 'library', 'modules', it);
|
||||
} else {
|
||||
return join(__dirname, '..', 'modules', it);
|
||||
}
|
||||
}),
|
||||
output: {
|
||||
path: '',
|
||||
filename: TARGET
|
||||
}
|
||||
}, function(err, info){
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
readFile(TARGET, function(err, script){
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
unlink(TARGET, function(err){
|
||||
var exportScript;
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
if (umd) {
|
||||
exportScript = "// CommonJS export\nif(typeof module != 'undefined' && module.exports)module.exports = __e;\n// RequireJS export\nelse if(typeof define == 'function' && define.amd)define(function(){return __e});\n// Export to global object\nelse __g.core = __e;";
|
||||
} else {
|
||||
exportScript = "";
|
||||
}
|
||||
resolve("" + banner + "\n!function(__e, __g, undefined){\n'use strict';\n" + script + "\n" + exportScript + "\n}(1, 1);");
|
||||
});
|
||||
});
|
||||
});
|
||||
}.call(modules.reduce(function(memo, it){
|
||||
memo[it] = true;
|
||||
return memo;
|
||||
}, {})));
|
||||
});
|
||||
};
|
||||
function in$(x, xs){
|
||||
var i = -1, l = xs.length >>> 0;
|
||||
while (++i < l) if (x === xs[i]) return true;
|
||||
return false;
|
||||
}
|
||||
}).call(this);
|
7386
node_modules/core-js/client/core.js
generated
vendored
7386
node_modules/core-js/client/core.js
generated
vendored
File diff suppressed because it is too large
Load Diff
10
node_modules/core-js/client/core.min.js
generated
vendored
10
node_modules/core-js/client/core.min.js
generated
vendored
File diff suppressed because one or more lines are too long
1
node_modules/core-js/client/core.min.js.map
generated
vendored
1
node_modules/core-js/client/core.min.js.map
generated
vendored
File diff suppressed because one or more lines are too long
6909
node_modules/core-js/client/library.js
generated
vendored
6909
node_modules/core-js/client/library.js
generated
vendored
File diff suppressed because it is too large
Load Diff
10
node_modules/core-js/client/library.min.js
generated
vendored
10
node_modules/core-js/client/library.min.js
generated
vendored
File diff suppressed because one or more lines are too long
1
node_modules/core-js/client/library.min.js.map
generated
vendored
1
node_modules/core-js/client/library.min.js.map
generated
vendored
File diff suppressed because one or more lines are too long
7045
node_modules/core-js/client/shim.js
generated
vendored
7045
node_modules/core-js/client/shim.js
generated
vendored
File diff suppressed because it is too large
Load Diff
10
node_modules/core-js/client/shim.min.js
generated
vendored
10
node_modules/core-js/client/shim.min.js
generated
vendored
File diff suppressed because one or more lines are too long
1
node_modules/core-js/client/shim.min.js.map
generated
vendored
1
node_modules/core-js/client/shim.min.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/core-js/core/_.js
generated
vendored
2
node_modules/core-js/core/_.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/_core')._;
|
2
node_modules/core-js/core/delay.js
generated
vendored
2
node_modules/core-js/core/delay.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.delay');
|
||||
module.exports = require('../modules/_core').delay;
|
2
node_modules/core-js/core/dict.js
generated
vendored
2
node_modules/core-js/core/dict.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.dict');
|
||||
module.exports = require('../modules/_core').Dict;
|
2
node_modules/core-js/core/function.js
generated
vendored
2
node_modules/core-js/core/function.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/_core').Function;
|
15
node_modules/core-js/core/index.js
generated
vendored
15
node_modules/core-js/core/index.js
generated
vendored
@@ -1,15 +0,0 @@
|
||||
require('../modules/core.dict');
|
||||
require('../modules/core.get-iterator-method');
|
||||
require('../modules/core.get-iterator');
|
||||
require('../modules/core.is-iterable');
|
||||
require('../modules/core.delay');
|
||||
require('../modules/core.function.part');
|
||||
require('../modules/core.object.is-object');
|
||||
require('../modules/core.object.classof');
|
||||
require('../modules/core.object.define');
|
||||
require('../modules/core.object.make');
|
||||
require('../modules/core.number.iterator');
|
||||
require('../modules/core.regexp.escape');
|
||||
require('../modules/core.string.escape-html');
|
||||
require('../modules/core.string.unescape-html');
|
||||
module.exports = require('../modules/_core');
|
2
node_modules/core-js/core/number.js
generated
vendored
2
node_modules/core-js/core/number.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.number.iterator');
|
||||
module.exports = require('../modules/_core').Number;
|
5
node_modules/core-js/core/object.js
generated
vendored
5
node_modules/core-js/core/object.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
require('../modules/core.object.is-object');
|
||||
require('../modules/core.object.classof');
|
||||
require('../modules/core.object.define');
|
||||
require('../modules/core.object.make');
|
||||
module.exports = require('../modules/_core').Object;
|
2
node_modules/core-js/core/regexp.js
generated
vendored
2
node_modules/core-js/core/regexp.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.regexp.escape');
|
||||
module.exports = require('../modules/_core').RegExp;
|
3
node_modules/core-js/core/string.js
generated
vendored
3
node_modules/core-js/core/string.js
generated
vendored
@@ -1,3 +0,0 @@
|
||||
require('../modules/core.string.escape-html');
|
||||
require('../modules/core.string.unescape-html');
|
||||
module.exports = require('../modules/_core').String;
|
37
node_modules/core-js/es5/index.js
generated
vendored
37
node_modules/core-js/es5/index.js
generated
vendored
@@ -1,37 +0,0 @@
|
||||
require('../modules/es6.object.create');
|
||||
require('../modules/es6.object.define-property');
|
||||
require('../modules/es6.object.define-properties');
|
||||
require('../modules/es6.object.get-own-property-descriptor');
|
||||
require('../modules/es6.object.get-prototype-of');
|
||||
require('../modules/es6.object.keys');
|
||||
require('../modules/es6.object.get-own-property-names');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.function.bind');
|
||||
require('../modules/es6.array.is-array');
|
||||
require('../modules/es6.array.join');
|
||||
require('../modules/es6.array.slice');
|
||||
require('../modules/es6.array.sort');
|
||||
require('../modules/es6.array.for-each');
|
||||
require('../modules/es6.array.map');
|
||||
require('../modules/es6.array.filter');
|
||||
require('../modules/es6.array.some');
|
||||
require('../modules/es6.array.every');
|
||||
require('../modules/es6.array.reduce');
|
||||
require('../modules/es6.array.reduce-right');
|
||||
require('../modules/es6.array.index-of');
|
||||
require('../modules/es6.array.last-index-of');
|
||||
require('../modules/es6.number.to-fixed');
|
||||
require('../modules/es6.number.to-precision');
|
||||
require('../modules/es6.date.now');
|
||||
require('../modules/es6.date.to-iso-string');
|
||||
require('../modules/es6.date.to-json');
|
||||
require('../modules/es6.parse-int');
|
||||
require('../modules/es6.parse-float');
|
||||
require('../modules/es6.string.trim');
|
||||
require('../modules/es6.regexp.to-string');
|
||||
module.exports = require('../modules/_core');
|
23
node_modules/core-js/es6/array.js
generated
vendored
23
node_modules/core-js/es6/array.js
generated
vendored
@@ -1,23 +0,0 @@
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.array.is-array');
|
||||
require('../modules/es6.array.from');
|
||||
require('../modules/es6.array.of');
|
||||
require('../modules/es6.array.join');
|
||||
require('../modules/es6.array.slice');
|
||||
require('../modules/es6.array.sort');
|
||||
require('../modules/es6.array.for-each');
|
||||
require('../modules/es6.array.map');
|
||||
require('../modules/es6.array.filter');
|
||||
require('../modules/es6.array.some');
|
||||
require('../modules/es6.array.every');
|
||||
require('../modules/es6.array.reduce');
|
||||
require('../modules/es6.array.reduce-right');
|
||||
require('../modules/es6.array.index-of');
|
||||
require('../modules/es6.array.last-index-of');
|
||||
require('../modules/es6.array.copy-within');
|
||||
require('../modules/es6.array.fill');
|
||||
require('../modules/es6.array.find');
|
||||
require('../modules/es6.array.find-index');
|
||||
require('../modules/es6.array.species');
|
||||
require('../modules/es6.array.iterator');
|
||||
module.exports = require('../modules/_core').Array;
|
6
node_modules/core-js/es6/date.js
generated
vendored
6
node_modules/core-js/es6/date.js
generated
vendored
@@ -1,6 +0,0 @@
|
||||
require('../modules/es6.date.now');
|
||||
require('../modules/es6.date.to-json');
|
||||
require('../modules/es6.date.to-iso-string');
|
||||
require('../modules/es6.date.to-string');
|
||||
require('../modules/es6.date.to-primitive');
|
||||
module.exports = Date;
|
4
node_modules/core-js/es6/function.js
generated
vendored
4
node_modules/core-js/es6/function.js
generated
vendored
@@ -1,4 +0,0 @@
|
||||
require('../modules/es6.function.bind');
|
||||
require('../modules/es6.function.name');
|
||||
require('../modules/es6.function.has-instance');
|
||||
module.exports = require('../modules/_core').Function;
|
138
node_modules/core-js/es6/index.js
generated
vendored
138
node_modules/core-js/es6/index.js
generated
vendored
@@ -1,138 +0,0 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.create');
|
||||
require('../modules/es6.object.define-property');
|
||||
require('../modules/es6.object.define-properties');
|
||||
require('../modules/es6.object.get-own-property-descriptor');
|
||||
require('../modules/es6.object.get-prototype-of');
|
||||
require('../modules/es6.object.keys');
|
||||
require('../modules/es6.object.get-own-property-names');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.object.assign');
|
||||
require('../modules/es6.object.is');
|
||||
require('../modules/es6.object.set-prototype-of');
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.function.bind');
|
||||
require('../modules/es6.function.name');
|
||||
require('../modules/es6.function.has-instance');
|
||||
require('../modules/es6.parse-int');
|
||||
require('../modules/es6.parse-float');
|
||||
require('../modules/es6.number.constructor');
|
||||
require('../modules/es6.number.to-fixed');
|
||||
require('../modules/es6.number.to-precision');
|
||||
require('../modules/es6.number.epsilon');
|
||||
require('../modules/es6.number.is-finite');
|
||||
require('../modules/es6.number.is-integer');
|
||||
require('../modules/es6.number.is-nan');
|
||||
require('../modules/es6.number.is-safe-integer');
|
||||
require('../modules/es6.number.max-safe-integer');
|
||||
require('../modules/es6.number.min-safe-integer');
|
||||
require('../modules/es6.number.parse-float');
|
||||
require('../modules/es6.number.parse-int');
|
||||
require('../modules/es6.math.acosh');
|
||||
require('../modules/es6.math.asinh');
|
||||
require('../modules/es6.math.atanh');
|
||||
require('../modules/es6.math.cbrt');
|
||||
require('../modules/es6.math.clz32');
|
||||
require('../modules/es6.math.cosh');
|
||||
require('../modules/es6.math.expm1');
|
||||
require('../modules/es6.math.fround');
|
||||
require('../modules/es6.math.hypot');
|
||||
require('../modules/es6.math.imul');
|
||||
require('../modules/es6.math.log10');
|
||||
require('../modules/es6.math.log1p');
|
||||
require('../modules/es6.math.log2');
|
||||
require('../modules/es6.math.sign');
|
||||
require('../modules/es6.math.sinh');
|
||||
require('../modules/es6.math.tanh');
|
||||
require('../modules/es6.math.trunc');
|
||||
require('../modules/es6.string.from-code-point');
|
||||
require('../modules/es6.string.raw');
|
||||
require('../modules/es6.string.trim');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.string.code-point-at');
|
||||
require('../modules/es6.string.ends-with');
|
||||
require('../modules/es6.string.includes');
|
||||
require('../modules/es6.string.repeat');
|
||||
require('../modules/es6.string.starts-with');
|
||||
require('../modules/es6.string.anchor');
|
||||
require('../modules/es6.string.big');
|
||||
require('../modules/es6.string.blink');
|
||||
require('../modules/es6.string.bold');
|
||||
require('../modules/es6.string.fixed');
|
||||
require('../modules/es6.string.fontcolor');
|
||||
require('../modules/es6.string.fontsize');
|
||||
require('../modules/es6.string.italics');
|
||||
require('../modules/es6.string.link');
|
||||
require('../modules/es6.string.small');
|
||||
require('../modules/es6.string.strike');
|
||||
require('../modules/es6.string.sub');
|
||||
require('../modules/es6.string.sup');
|
||||
require('../modules/es6.date.now');
|
||||
require('../modules/es6.date.to-json');
|
||||
require('../modules/es6.date.to-iso-string');
|
||||
require('../modules/es6.date.to-string');
|
||||
require('../modules/es6.date.to-primitive');
|
||||
require('../modules/es6.array.is-array');
|
||||
require('../modules/es6.array.from');
|
||||
require('../modules/es6.array.of');
|
||||
require('../modules/es6.array.join');
|
||||
require('../modules/es6.array.slice');
|
||||
require('../modules/es6.array.sort');
|
||||
require('../modules/es6.array.for-each');
|
||||
require('../modules/es6.array.map');
|
||||
require('../modules/es6.array.filter');
|
||||
require('../modules/es6.array.some');
|
||||
require('../modules/es6.array.every');
|
||||
require('../modules/es6.array.reduce');
|
||||
require('../modules/es6.array.reduce-right');
|
||||
require('../modules/es6.array.index-of');
|
||||
require('../modules/es6.array.last-index-of');
|
||||
require('../modules/es6.array.copy-within');
|
||||
require('../modules/es6.array.fill');
|
||||
require('../modules/es6.array.find');
|
||||
require('../modules/es6.array.find-index');
|
||||
require('../modules/es6.array.species');
|
||||
require('../modules/es6.array.iterator');
|
||||
require('../modules/es6.regexp.constructor');
|
||||
require('../modules/es6.regexp.to-string');
|
||||
require('../modules/es6.regexp.flags');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
require('../modules/es6.promise');
|
||||
require('../modules/es6.map');
|
||||
require('../modules/es6.set');
|
||||
require('../modules/es6.weak-map');
|
||||
require('../modules/es6.weak-set');
|
||||
require('../modules/es6.typed.array-buffer');
|
||||
require('../modules/es6.typed.data-view');
|
||||
require('../modules/es6.typed.int8-array');
|
||||
require('../modules/es6.typed.uint8-array');
|
||||
require('../modules/es6.typed.uint8-clamped-array');
|
||||
require('../modules/es6.typed.int16-array');
|
||||
require('../modules/es6.typed.uint16-array');
|
||||
require('../modules/es6.typed.int32-array');
|
||||
require('../modules/es6.typed.uint32-array');
|
||||
require('../modules/es6.typed.float32-array');
|
||||
require('../modules/es6.typed.float64-array');
|
||||
require('../modules/es6.reflect.apply');
|
||||
require('../modules/es6.reflect.construct');
|
||||
require('../modules/es6.reflect.define-property');
|
||||
require('../modules/es6.reflect.delete-property');
|
||||
require('../modules/es6.reflect.enumerate');
|
||||
require('../modules/es6.reflect.get');
|
||||
require('../modules/es6.reflect.get-own-property-descriptor');
|
||||
require('../modules/es6.reflect.get-prototype-of');
|
||||
require('../modules/es6.reflect.has');
|
||||
require('../modules/es6.reflect.is-extensible');
|
||||
require('../modules/es6.reflect.own-keys');
|
||||
require('../modules/es6.reflect.prevent-extensions');
|
||||
require('../modules/es6.reflect.set');
|
||||
require('../modules/es6.reflect.set-prototype-of');
|
||||
module.exports = require('../modules/_core');
|
5
node_modules/core-js/es6/map.js
generated
vendored
5
node_modules/core-js/es6/map.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.map');
|
||||
module.exports = require('../modules/_core').Map;
|
18
node_modules/core-js/es6/math.js
generated
vendored
18
node_modules/core-js/es6/math.js
generated
vendored
@@ -1,18 +0,0 @@
|
||||
require('../modules/es6.math.acosh');
|
||||
require('../modules/es6.math.asinh');
|
||||
require('../modules/es6.math.atanh');
|
||||
require('../modules/es6.math.cbrt');
|
||||
require('../modules/es6.math.clz32');
|
||||
require('../modules/es6.math.cosh');
|
||||
require('../modules/es6.math.expm1');
|
||||
require('../modules/es6.math.fround');
|
||||
require('../modules/es6.math.hypot');
|
||||
require('../modules/es6.math.imul');
|
||||
require('../modules/es6.math.log10');
|
||||
require('../modules/es6.math.log1p');
|
||||
require('../modules/es6.math.log2');
|
||||
require('../modules/es6.math.sign');
|
||||
require('../modules/es6.math.sinh');
|
||||
require('../modules/es6.math.tanh');
|
||||
require('../modules/es6.math.trunc');
|
||||
module.exports = require('../modules/_core').Math;
|
13
node_modules/core-js/es6/number.js
generated
vendored
13
node_modules/core-js/es6/number.js
generated
vendored
@@ -1,13 +0,0 @@
|
||||
require('../modules/es6.number.constructor');
|
||||
require('../modules/es6.number.to-fixed');
|
||||
require('../modules/es6.number.to-precision');
|
||||
require('../modules/es6.number.epsilon');
|
||||
require('../modules/es6.number.is-finite');
|
||||
require('../modules/es6.number.is-integer');
|
||||
require('../modules/es6.number.is-nan');
|
||||
require('../modules/es6.number.is-safe-integer');
|
||||
require('../modules/es6.number.max-safe-integer');
|
||||
require('../modules/es6.number.min-safe-integer');
|
||||
require('../modules/es6.number.parse-float');
|
||||
require('../modules/es6.number.parse-int');
|
||||
module.exports = require('../modules/_core').Number;
|
20
node_modules/core-js/es6/object.js
generated
vendored
20
node_modules/core-js/es6/object.js
generated
vendored
@@ -1,20 +0,0 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.create');
|
||||
require('../modules/es6.object.define-property');
|
||||
require('../modules/es6.object.define-properties');
|
||||
require('../modules/es6.object.get-own-property-descriptor');
|
||||
require('../modules/es6.object.get-prototype-of');
|
||||
require('../modules/es6.object.keys');
|
||||
require('../modules/es6.object.get-own-property-names');
|
||||
require('../modules/es6.object.freeze');
|
||||
require('../modules/es6.object.seal');
|
||||
require('../modules/es6.object.prevent-extensions');
|
||||
require('../modules/es6.object.is-frozen');
|
||||
require('../modules/es6.object.is-sealed');
|
||||
require('../modules/es6.object.is-extensible');
|
||||
require('../modules/es6.object.assign');
|
||||
require('../modules/es6.object.is');
|
||||
require('../modules/es6.object.set-prototype-of');
|
||||
require('../modules/es6.object.to-string');
|
||||
|
||||
module.exports = require('../modules/_core').Object;
|
2
node_modules/core-js/es6/parse-float.js
generated
vendored
2
node_modules/core-js/es6/parse-float.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es6.parse-float');
|
||||
module.exports = require('../modules/_core').parseFloat;
|
2
node_modules/core-js/es6/parse-int.js
generated
vendored
2
node_modules/core-js/es6/parse-int.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es6.parse-int');
|
||||
module.exports = require('../modules/_core').parseInt;
|
5
node_modules/core-js/es6/promise.js
generated
vendored
5
node_modules/core-js/es6/promise.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.promise');
|
||||
module.exports = require('../modules/_core').Promise;
|
15
node_modules/core-js/es6/reflect.js
generated
vendored
15
node_modules/core-js/es6/reflect.js
generated
vendored
@@ -1,15 +0,0 @@
|
||||
require('../modules/es6.reflect.apply');
|
||||
require('../modules/es6.reflect.construct');
|
||||
require('../modules/es6.reflect.define-property');
|
||||
require('../modules/es6.reflect.delete-property');
|
||||
require('../modules/es6.reflect.enumerate');
|
||||
require('../modules/es6.reflect.get');
|
||||
require('../modules/es6.reflect.get-own-property-descriptor');
|
||||
require('../modules/es6.reflect.get-prototype-of');
|
||||
require('../modules/es6.reflect.has');
|
||||
require('../modules/es6.reflect.is-extensible');
|
||||
require('../modules/es6.reflect.own-keys');
|
||||
require('../modules/es6.reflect.prevent-extensions');
|
||||
require('../modules/es6.reflect.set');
|
||||
require('../modules/es6.reflect.set-prototype-of');
|
||||
module.exports = require('../modules/_core').Reflect;
|
8
node_modules/core-js/es6/regexp.js
generated
vendored
8
node_modules/core-js/es6/regexp.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
require('../modules/es6.regexp.constructor');
|
||||
require('../modules/es6.regexp.to-string');
|
||||
require('../modules/es6.regexp.flags');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
module.exports = require('../modules/_core').RegExp;
|
5
node_modules/core-js/es6/set.js
generated
vendored
5
node_modules/core-js/es6/set.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.set');
|
||||
module.exports = require('../modules/_core').Set;
|
27
node_modules/core-js/es6/string.js
generated
vendored
27
node_modules/core-js/es6/string.js
generated
vendored
@@ -1,27 +0,0 @@
|
||||
require('../modules/es6.string.from-code-point');
|
||||
require('../modules/es6.string.raw');
|
||||
require('../modules/es6.string.trim');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/es6.string.code-point-at');
|
||||
require('../modules/es6.string.ends-with');
|
||||
require('../modules/es6.string.includes');
|
||||
require('../modules/es6.string.repeat');
|
||||
require('../modules/es6.string.starts-with');
|
||||
require('../modules/es6.string.anchor');
|
||||
require('../modules/es6.string.big');
|
||||
require('../modules/es6.string.blink');
|
||||
require('../modules/es6.string.bold');
|
||||
require('../modules/es6.string.fixed');
|
||||
require('../modules/es6.string.fontcolor');
|
||||
require('../modules/es6.string.fontsize');
|
||||
require('../modules/es6.string.italics');
|
||||
require('../modules/es6.string.link');
|
||||
require('../modules/es6.string.small');
|
||||
require('../modules/es6.string.strike');
|
||||
require('../modules/es6.string.sub');
|
||||
require('../modules/es6.string.sup');
|
||||
require('../modules/es6.regexp.match');
|
||||
require('../modules/es6.regexp.replace');
|
||||
require('../modules/es6.regexp.search');
|
||||
require('../modules/es6.regexp.split');
|
||||
module.exports = require('../modules/_core').String;
|
3
node_modules/core-js/es6/symbol.js
generated
vendored
3
node_modules/core-js/es6/symbol.js
generated
vendored
@@ -1,3 +0,0 @@
|
||||
require('../modules/es6.symbol');
|
||||
require('../modules/es6.object.to-string');
|
||||
module.exports = require('../modules/_core').Symbol;
|
13
node_modules/core-js/es6/typed.js
generated
vendored
13
node_modules/core-js/es6/typed.js
generated
vendored
@@ -1,13 +0,0 @@
|
||||
require('../modules/es6.typed.array-buffer');
|
||||
require('../modules/es6.typed.data-view');
|
||||
require('../modules/es6.typed.int8-array');
|
||||
require('../modules/es6.typed.uint8-array');
|
||||
require('../modules/es6.typed.uint8-clamped-array');
|
||||
require('../modules/es6.typed.int16-array');
|
||||
require('../modules/es6.typed.uint16-array');
|
||||
require('../modules/es6.typed.int32-array');
|
||||
require('../modules/es6.typed.uint32-array');
|
||||
require('../modules/es6.typed.float32-array');
|
||||
require('../modules/es6.typed.float64-array');
|
||||
require('../modules/es6.object.to-string');
|
||||
module.exports = require('../modules/_core');
|
4
node_modules/core-js/es6/weak-map.js
generated
vendored
4
node_modules/core-js/es6/weak-map.js
generated
vendored
@@ -1,4 +0,0 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.array.iterator');
|
||||
require('../modules/es6.weak-map');
|
||||
module.exports = require('../modules/_core').WeakMap;
|
4
node_modules/core-js/es6/weak-set.js
generated
vendored
4
node_modules/core-js/es6/weak-set.js
generated
vendored
@@ -1,4 +0,0 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.weak-set');
|
||||
module.exports = require('../modules/_core').WeakSet;
|
2
node_modules/core-js/es7/array.js
generated
vendored
2
node_modules/core-js/es7/array.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.array.includes');
|
||||
module.exports = require('../modules/_core').Array;
|
2
node_modules/core-js/es7/asap.js
generated
vendored
2
node_modules/core-js/es7/asap.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.asap');
|
||||
module.exports = require('../modules/_core').asap;
|
2
node_modules/core-js/es7/error.js
generated
vendored
2
node_modules/core-js/es7/error.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.error.is-error');
|
||||
module.exports = require('../modules/_core').Error;
|
35
node_modules/core-js/es7/index.js
generated
vendored
35
node_modules/core-js/es7/index.js
generated
vendored
@@ -1,35 +0,0 @@
|
||||
require('../modules/es7.array.includes');
|
||||
require('../modules/es7.string.at');
|
||||
require('../modules/es7.string.pad-start');
|
||||
require('../modules/es7.string.pad-end');
|
||||
require('../modules/es7.string.trim-left');
|
||||
require('../modules/es7.string.trim-right');
|
||||
require('../modules/es7.string.match-all');
|
||||
require('../modules/es7.symbol.async-iterator');
|
||||
require('../modules/es7.symbol.observable');
|
||||
require('../modules/es7.object.get-own-property-descriptors');
|
||||
require('../modules/es7.object.values');
|
||||
require('../modules/es7.object.entries');
|
||||
require('../modules/es7.object.define-getter');
|
||||
require('../modules/es7.object.define-setter');
|
||||
require('../modules/es7.object.lookup-getter');
|
||||
require('../modules/es7.object.lookup-setter');
|
||||
require('../modules/es7.map.to-json');
|
||||
require('../modules/es7.set.to-json');
|
||||
require('../modules/es7.system.global');
|
||||
require('../modules/es7.error.is-error');
|
||||
require('../modules/es7.math.iaddh');
|
||||
require('../modules/es7.math.isubh');
|
||||
require('../modules/es7.math.imulh');
|
||||
require('../modules/es7.math.umulh');
|
||||
require('../modules/es7.reflect.define-metadata');
|
||||
require('../modules/es7.reflect.delete-metadata');
|
||||
require('../modules/es7.reflect.get-metadata');
|
||||
require('../modules/es7.reflect.get-metadata-keys');
|
||||
require('../modules/es7.reflect.get-own-metadata');
|
||||
require('../modules/es7.reflect.get-own-metadata-keys');
|
||||
require('../modules/es7.reflect.has-metadata');
|
||||
require('../modules/es7.reflect.has-own-metadata');
|
||||
require('../modules/es7.reflect.metadata');
|
||||
require('../modules/es7.asap');
|
||||
module.exports = require('../modules/_core');
|
2
node_modules/core-js/es7/map.js
generated
vendored
2
node_modules/core-js/es7/map.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.map.to-json');
|
||||
module.exports = require('../modules/_core').Map;
|
5
node_modules/core-js/es7/math.js
generated
vendored
5
node_modules/core-js/es7/math.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
require('../modules/es7.math.iaddh');
|
||||
require('../modules/es7.math.isubh');
|
||||
require('../modules/es7.math.imulh');
|
||||
require('../modules/es7.math.umulh');
|
||||
module.exports = require('../modules/_core').Math;
|
8
node_modules/core-js/es7/object.js
generated
vendored
8
node_modules/core-js/es7/object.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
require('../modules/es7.object.get-own-property-descriptors');
|
||||
require('../modules/es7.object.values');
|
||||
require('../modules/es7.object.entries');
|
||||
require('../modules/es7.object.define-getter');
|
||||
require('../modules/es7.object.define-setter');
|
||||
require('../modules/es7.object.lookup-getter');
|
||||
require('../modules/es7.object.lookup-setter');
|
||||
module.exports = require('../modules/_core').Object;
|
10
node_modules/core-js/es7/reflect.js
generated
vendored
10
node_modules/core-js/es7/reflect.js
generated
vendored
@@ -1,10 +0,0 @@
|
||||
require('../modules/es7.reflect.define-metadata');
|
||||
require('../modules/es7.reflect.delete-metadata');
|
||||
require('../modules/es7.reflect.get-metadata');
|
||||
require('../modules/es7.reflect.get-metadata-keys');
|
||||
require('../modules/es7.reflect.get-own-metadata');
|
||||
require('../modules/es7.reflect.get-own-metadata-keys');
|
||||
require('../modules/es7.reflect.has-metadata');
|
||||
require('../modules/es7.reflect.has-own-metadata');
|
||||
require('../modules/es7.reflect.metadata');
|
||||
module.exports = require('../modules/_core').Reflect;
|
2
node_modules/core-js/es7/set.js
generated
vendored
2
node_modules/core-js/es7/set.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.set.to-json');
|
||||
module.exports = require('../modules/_core').Set;
|
7
node_modules/core-js/es7/string.js
generated
vendored
7
node_modules/core-js/es7/string.js
generated
vendored
@@ -1,7 +0,0 @@
|
||||
require('../modules/es7.string.at');
|
||||
require('../modules/es7.string.pad-start');
|
||||
require('../modules/es7.string.pad-end');
|
||||
require('../modules/es7.string.trim-left');
|
||||
require('../modules/es7.string.trim-right');
|
||||
require('../modules/es7.string.match-all');
|
||||
module.exports = require('../modules/_core').String;
|
3
node_modules/core-js/es7/symbol.js
generated
vendored
3
node_modules/core-js/es7/symbol.js
generated
vendored
@@ -1,3 +0,0 @@
|
||||
require('../modules/es7.symbol.async-iterator');
|
||||
require('../modules/es7.symbol.observable');
|
||||
module.exports = require('../modules/_core').Symbol;
|
2
node_modules/core-js/es7/system.js
generated
vendored
2
node_modules/core-js/es7/system.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/es7.system.global');
|
||||
module.exports = require('../modules/_core').System;
|
2
node_modules/core-js/fn/_.js
generated
vendored
2
node_modules/core-js/fn/_.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/_core')._;
|
4
node_modules/core-js/fn/array/concat.js
generated
vendored
4
node_modules/core-js/fn/array/concat.js
generated
vendored
@@ -1,4 +0,0 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function(){
|
||||
return Function.call.apply(Array.prototype.concat, arguments);
|
||||
};
|
2
node_modules/core-js/fn/array/copy-within.js
generated
vendored
2
node_modules/core-js/fn/array/copy-within.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.copy-within');
|
||||
module.exports = require('../../modules/_core').Array.copyWithin;
|
2
node_modules/core-js/fn/array/entries.js
generated
vendored
2
node_modules/core-js/fn/array/entries.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/_core').Array.entries;
|
2
node_modules/core-js/fn/array/every.js
generated
vendored
2
node_modules/core-js/fn/array/every.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.every');
|
||||
module.exports = require('../../modules/_core').Array.every;
|
2
node_modules/core-js/fn/array/fill.js
generated
vendored
2
node_modules/core-js/fn/array/fill.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.fill');
|
||||
module.exports = require('../../modules/_core').Array.fill;
|
2
node_modules/core-js/fn/array/filter.js
generated
vendored
2
node_modules/core-js/fn/array/filter.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.filter');
|
||||
module.exports = require('../../modules/_core').Array.filter;
|
2
node_modules/core-js/fn/array/find-index.js
generated
vendored
2
node_modules/core-js/fn/array/find-index.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.find-index');
|
||||
module.exports = require('../../modules/_core').Array.findIndex;
|
2
node_modules/core-js/fn/array/find.js
generated
vendored
2
node_modules/core-js/fn/array/find.js
generated
vendored
@@ -1,2 +0,0 @@
|
||||
require('../../modules/es6.array.find');
|
||||
module.exports = require('../../modules/_core').Array.find;
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user