mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 18:06:45 +00:00
Fix.
This commit is contained in:
parent
596a6da241
commit
c1a589c5b6
7078 changed files with 1882834 additions and 319 deletions
36
node_modules/performance-now/lib/performance-now.js
generated
vendored
Normal file
36
node_modules/performance-now/lib/performance-now.js
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
// Generated by CoffeeScript 1.12.2
|
||||
(function() {
|
||||
var getNanoSeconds, hrtime, loadTime, moduleLoadTime, nodeLoadTime, upTime;
|
||||
|
||||
if ((typeof performance !== "undefined" && performance !== null) && performance.now) {
|
||||
module.exports = function() {
|
||||
return performance.now();
|
||||
};
|
||||
} else if ((typeof process !== "undefined" && process !== null) && process.hrtime) {
|
||||
module.exports = function() {
|
||||
return (getNanoSeconds() - nodeLoadTime) / 1e6;
|
||||
};
|
||||
hrtime = process.hrtime;
|
||||
getNanoSeconds = function() {
|
||||
var hr;
|
||||
hr = hrtime();
|
||||
return hr[0] * 1e9 + hr[1];
|
||||
};
|
||||
moduleLoadTime = getNanoSeconds();
|
||||
upTime = process.uptime() * 1e9;
|
||||
nodeLoadTime = moduleLoadTime - upTime;
|
||||
} else if (Date.now) {
|
||||
module.exports = function() {
|
||||
return Date.now() - loadTime;
|
||||
};
|
||||
loadTime = Date.now();
|
||||
} else {
|
||||
module.exports = function() {
|
||||
return new Date().getTime() - loadTime;
|
||||
};
|
||||
loadTime = new Date().getTime();
|
||||
}
|
||||
|
||||
}).call(this);
|
||||
|
||||
//# sourceMappingURL=performance-now.js.map
|
10
node_modules/performance-now/lib/performance-now.js.map
generated
vendored
Normal file
10
node_modules/performance-now/lib/performance-now.js.map
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"version": 3,
|
||||
"file": "performance-now.js",
|
||||
"sourceRoot": "..",
|
||||
"sources": [
|
||||
"src/performance-now.coffee"
|
||||
],
|
||||
"names": [],
|
||||
"mappings": ";AAAA;AAAA,MAAA;;EAAA,IAAG,4DAAA,IAAiB,WAAW,CAAC,GAAhC;IACE,MAAM,CAAC,OAAP,GAAiB,SAAA;aAAG,WAAW,CAAC,GAAZ,CAAA;IAAH,EADnB;GAAA,MAEK,IAAG,oDAAA,IAAa,OAAO,CAAC,MAAxB;IACH,MAAM,CAAC,OAAP,GAAiB,SAAA;aAAG,CAAC,cAAA,CAAA,CAAA,GAAmB,YAApB,CAAA,GAAoC;IAAvC;IACjB,MAAA,GAAS,OAAO,CAAC;IACjB,cAAA,GAAiB,SAAA;AACf,UAAA;MAAA,EAAA,GAAK,MAAA,CAAA;aACL,EAAG,CAAA,CAAA,CAAH,GAAQ,GAAR,GAAc,EAAG,CAAA,CAAA;IAFF;IAGjB,cAAA,GAAiB,cAAA,CAAA;IACjB,MAAA,GAAS,OAAO,CAAC,MAAR,CAAA,CAAA,GAAmB;IAC5B,YAAA,GAAe,cAAA,GAAiB,OAR7B;GAAA,MASA,IAAG,IAAI,CAAC,GAAR;IACH,MAAM,CAAC,OAAP,GAAiB,SAAA;aAAG,IAAI,CAAC,GAAL,CAAA,CAAA,GAAa;IAAhB;IACjB,QAAA,GAAW,IAAI,CAAC,GAAL,CAAA,EAFR;GAAA,MAAA;IAIH,MAAM,CAAC,OAAP,GAAiB,SAAA;aAAO,IAAA,IAAA,CAAA,CAAM,CAAC,OAAP,CAAA,CAAJ,GAAuB;IAA1B;IACjB,QAAA,GAAe,IAAA,IAAA,CAAA,CAAM,CAAC,OAAP,CAAA,EALZ;;AAXL"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue