UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

14 lines (11 loc) 318 B
'use strict'; var util = require('util'); var getPolyfill = require('./polyfill'); module.exports = function shimUtilPromisify() { var polyfill = getPolyfill(); if (polyfill !== util.promisify) { util.promisify = polyfill; Object.defineProperty(util, 'promisify', { value: polyfill }); } return polyfill; };