save code
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"root": true,
|
||||
|
||||
"extends": "@ljharb",
|
||||
|
||||
"overrides": [
|
||||
{
|
||||
"files": "./index.js",
|
||||
"extends": "@ljharb/eslint-config/node/8"
|
||||
},
|
||||
{
|
||||
"files": "./require.mjs",
|
||||
"extends": "@ljharb/eslint-config/node/16",
|
||||
},
|
||||
],
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"all": true,
|
||||
"check-coverage": false,
|
||||
"reporter": ["text-summary", "text", "html", "json"],
|
||||
"exclude": [
|
||||
"coverage",
|
||||
"test"
|
||||
]
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2016 EduardoRFS
|
||||
|
||||
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.
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
// eslint-disable-next-line no-extra-parens, no-empty-function
|
||||
const cached = /** @type {import('.').AsyncFunctionConstructor} */ (async function () {}.constructor);
|
||||
|
||||
/** @type {import('.')} */
|
||||
module.exports = () => cached;
|
||||
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
'use strict';
|
||||
|
||||
var test = require('tape');
|
||||
var getProto = require('get-proto');
|
||||
var semver = require('semver');
|
||||
|
||||
var getAsyncFunction = require('../');
|
||||
|
||||
test('getAsyncFunction', function (t) {
|
||||
var result = getAsyncFunction();
|
||||
|
||||
/* eslint-env browser */
|
||||
if (typeof window === 'undefined' && typeof process !== 'undefined') {
|
||||
t.equal(
|
||||
!!result,
|
||||
semver.satisfies(process.version, '>= 7.6'),
|
||||
'result is present or absent as expected for node ' + process.version
|
||||
);
|
||||
}
|
||||
|
||||
t.test('exists', { skip: !result }, function (st) {
|
||||
if (result && getProto) { // TS can't infer `skip`, or that getProto definitely exists if AsyncFunction exists
|
||||
st.equal(typeof result, 'function', 'is a function');
|
||||
st.equal(getProto(result), Function, 'extends Function');
|
||||
|
||||
return result('a', 'return a')(42).then(function (a) {
|
||||
st.equal(a, 42, 'returns an async function');
|
||||
});
|
||||
}
|
||||
return st.fail('should never get here');
|
||||
});
|
||||
|
||||
t.test('does not exist', { skip: !!result }, function (st) {
|
||||
st.equal(result, false, 'is false');
|
||||
|
||||
st.end();
|
||||
});
|
||||
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user