You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
357 B
17 lines
357 B
'use strict'; |
|
|
|
var util = require('util'); |
|
var getPolyfill = require('./polyfill'); |
|
|
|
module.exports = function shimUtilPromisify() { |
|
var polyfill = getPolyfill(); |
|
if (polyfill !== util.promisify) { |
|
Object.defineProperty(util, 'promisify', { |
|
configurable: true, |
|
enumerable: true, |
|
value: polyfill, |
|
writable: true |
|
}); |
|
} |
|
return polyfill; |
|
};
|
|
|