Skip to content

Commit aa9c2d0

Browse files
committed
📦 build: Bump version and build
1 parent 06a0c70 commit aa9c2d0

31 files changed

+12966
-604
lines changed

dist/fakerator.js

Lines changed: 910 additions & 450 deletions
Large diffs are not rendered by default.

dist/fakerator.min.js

Lines changed: 14 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locales/cs-CZ.js

Lines changed: 11553 additions & 0 deletions
Large diffs are not rendered by default.

dist/locales/cs-CZ.min.js

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locales/de-DE.js

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* fakerator v0.2.0
2+
* fakerator v0.3.0
33
* https://github.com/icebob/fakerator
44
* Released under the MIT License.
55
*/
@@ -9950,6 +9950,31 @@ return /******/ (function(modules) { // webpackBootstrap
99509950
// shim for using process in browser
99519951

99529952
var process = module.exports = {};
9953+
9954+
// cached from whatever global is present so that test runners that stub it
9955+
// don't break things. But we need to wrap it in a try catch in case it is
9956+
// wrapped in strict mode code which doesn't define any globals. It's inside a
9957+
// function because try/catches deoptimize in certain engines.
9958+
9959+
var cachedSetTimeout;
9960+
var cachedClearTimeout;
9961+
9962+
(function () {
9963+
try {
9964+
cachedSetTimeout = setTimeout;
9965+
} catch (e) {
9966+
cachedSetTimeout = function () {
9967+
throw new Error('setTimeout is not defined');
9968+
}
9969+
}
9970+
try {
9971+
cachedClearTimeout = clearTimeout;
9972+
} catch (e) {
9973+
cachedClearTimeout = function () {
9974+
throw new Error('clearTimeout is not defined');
9975+
}
9976+
}
9977+
} ())
99539978
var queue = [];
99549979
var draining = false;
99559980
var currentQueue;
@@ -9974,7 +9999,7 @@ return /******/ (function(modules) { // webpackBootstrap
99749999
if (draining) {
997510000
return;
997610001
}
9977-
var timeout = setTimeout(cleanUpNextTick);
10002+
var timeout = cachedSetTimeout(cleanUpNextTick);
997810003
draining = true;
997910004

998010005
var len = queue.length;
@@ -9991,7 +10016,7 @@ return /******/ (function(modules) { // webpackBootstrap
999110016
}
999210017
currentQueue = null;
999310018
draining = false;
9994-
clearTimeout(timeout);
10019+
cachedClearTimeout(timeout);
999510020
}
999610021

999710022
process.nextTick = function (fun) {
@@ -10003,7 +10028,7 @@ return /******/ (function(modules) { // webpackBootstrap
1000310028
}
1000410029
queue.push(new Item(fun, args));
1000510030
if (queue.length === 1 && !draining) {
10006-
setTimeout(drainQueue, 0);
10031+
cachedSetTimeout(drainQueue, 0);
1000710032
}
1000810033
};
1000910034

dist/locales/de-DE.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locales/default.js

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* fakerator v0.2.0
2+
* fakerator v0.3.0
33
* https://github.com/icebob/fakerator
44
* Released under the MIT License.
55
*/
@@ -9528,6 +9528,31 @@ return /******/ (function(modules) { // webpackBootstrap
95289528
// shim for using process in browser
95299529

95309530
var process = module.exports = {};
9531+
9532+
// cached from whatever global is present so that test runners that stub it
9533+
// don't break things. But we need to wrap it in a try catch in case it is
9534+
// wrapped in strict mode code which doesn't define any globals. It's inside a
9535+
// function because try/catches deoptimize in certain engines.
9536+
9537+
var cachedSetTimeout;
9538+
var cachedClearTimeout;
9539+
9540+
(function () {
9541+
try {
9542+
cachedSetTimeout = setTimeout;
9543+
} catch (e) {
9544+
cachedSetTimeout = function () {
9545+
throw new Error('setTimeout is not defined');
9546+
}
9547+
}
9548+
try {
9549+
cachedClearTimeout = clearTimeout;
9550+
} catch (e) {
9551+
cachedClearTimeout = function () {
9552+
throw new Error('clearTimeout is not defined');
9553+
}
9554+
}
9555+
} ())
95319556
var queue = [];
95329557
var draining = false;
95339558
var currentQueue;
@@ -9552,7 +9577,7 @@ return /******/ (function(modules) { // webpackBootstrap
95529577
if (draining) {
95539578
return;
95549579
}
9555-
var timeout = setTimeout(cleanUpNextTick);
9580+
var timeout = cachedSetTimeout(cleanUpNextTick);
95569581
draining = true;
95579582

95589583
var len = queue.length;
@@ -9569,7 +9594,7 @@ return /******/ (function(modules) { // webpackBootstrap
95699594
}
95709595
currentQueue = null;
95719596
draining = false;
9572-
clearTimeout(timeout);
9597+
cachedClearTimeout(timeout);
95739598
}
95749599

95759600
process.nextTick = function (fun) {
@@ -9581,7 +9606,7 @@ return /******/ (function(modules) { // webpackBootstrap
95819606
}
95829607
queue.push(new Item(fun, args));
95839608
if (queue.length === 1 && !draining) {
9584-
setTimeout(drainQueue, 0);
9609+
cachedSetTimeout(drainQueue, 0);
95859610
}
95869611
};
95879612

dist/locales/default.min.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locales/en-AU.js

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* fakerator v0.2.0
2+
* fakerator v0.3.0
33
* https://github.com/icebob/fakerator
44
* Released under the MIT License.
55
*/
@@ -9680,6 +9680,31 @@ return /******/ (function(modules) { // webpackBootstrap
96809680
// shim for using process in browser
96819681

96829682
var process = module.exports = {};
9683+
9684+
// cached from whatever global is present so that test runners that stub it
9685+
// don't break things. But we need to wrap it in a try catch in case it is
9686+
// wrapped in strict mode code which doesn't define any globals. It's inside a
9687+
// function because try/catches deoptimize in certain engines.
9688+
9689+
var cachedSetTimeout;
9690+
var cachedClearTimeout;
9691+
9692+
(function () {
9693+
try {
9694+
cachedSetTimeout = setTimeout;
9695+
} catch (e) {
9696+
cachedSetTimeout = function () {
9697+
throw new Error('setTimeout is not defined');
9698+
}
9699+
}
9700+
try {
9701+
cachedClearTimeout = clearTimeout;
9702+
} catch (e) {
9703+
cachedClearTimeout = function () {
9704+
throw new Error('clearTimeout is not defined');
9705+
}
9706+
}
9707+
} ())
96839708
var queue = [];
96849709
var draining = false;
96859710
var currentQueue;
@@ -9704,7 +9729,7 @@ return /******/ (function(modules) { // webpackBootstrap
97049729
if (draining) {
97059730
return;
97069731
}
9707-
var timeout = setTimeout(cleanUpNextTick);
9732+
var timeout = cachedSetTimeout(cleanUpNextTick);
97089733
draining = true;
97099734

97109735
var len = queue.length;
@@ -9721,7 +9746,7 @@ return /******/ (function(modules) { // webpackBootstrap
97219746
}
97229747
currentQueue = null;
97239748
draining = false;
9724-
clearTimeout(timeout);
9749+
cachedClearTimeout(timeout);
97259750
}
97269751

97279752
process.nextTick = function (fun) {
@@ -9733,7 +9758,7 @@ return /******/ (function(modules) { // webpackBootstrap
97339758
}
97349759
queue.push(new Item(fun, args));
97359760
if (queue.length === 1 && !draining) {
9736-
setTimeout(drainQueue, 0);
9761+
cachedSetTimeout(drainQueue, 0);
97379762
}
97389763
};
97399764

dist/locales/en-AU.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)