mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
12 lines
236 B
JavaScript
Vendored
12 lines
236 B
JavaScript
Vendored
'use strict';
|
|
|
|
var util = require('util');
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
if (typeof util.promisify === 'function') {
|
|
return util.promisify;
|
|
}
|
|
return implementation;
|
|
};
|