mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-18 16:21:56 +01: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;
|
||
|
};
|