mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
11 lines
236 B
JavaScript
11 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;
|
|
};
|