mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 13:00:51 +08:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
'use strict';
|
|
|
|
var util = require('util');
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
if (typeof util.promisify === 'function') {
|
|
return util.promisify;
|
|
}
|
|
return implementation;
|
|
};
|