fuc-new/doc/node_modules/async/constant.js
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

14 lines
302 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (...args) {
return function (...ignoredArgs /*, callback*/) {
var callback = ignoredArgs.pop();
return callback(null, ...args);
};
};
module.exports = exports.default;