mirror of
https://gitcode.com/gh_mirrors/se/setup-python.git
synced 2026-07-03 10:47:29 +00: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;
|
|
};
|