1
0
mirror of https://gitea.com/actions/setup-python.git synced 2025-05-02 05:46:46 +08:00

12 lines
236 B
JavaScript
Raw Normal View History

2019-06-26 21:12:00 -04:00
'use strict';
var util = require('util');
var implementation = require('./implementation');
module.exports = function getPolyfill() {
if (typeof util.promisify === 'function') {
return util.promisify;
}
return implementation;
};