mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-17 04:25:56 +03: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;
|
|
};
|