blob: eca1524d0bb1d7fecc9395c71604cde1019cc02c [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var util = require('util');
4var getPolyfill = require('./polyfill');
5
6module.exports = function shimUtilPromisify() {
7 var polyfill = getPolyfill();
8 if (polyfill !== util.promisify) {
9 Object.defineProperty(util, 'promisify', {
10 configurable: true,
11 enumerable: true,
12 value: polyfill,
13 writable: true
14 });
15 }
16 return polyfill;
17};