UNPKG

only-changed-jest-watch-plugin

Version:

Jest watch plugin for running either only the modified test (for TDD), or tests of dependant modules

12 lines (9 loc) 236 B
'use strict'; var util = require('util'); var implementation = require('./implementation'); module.exports = function getPolyfill() { if (typeof util.promisify === 'function') { return util.promisify; } return implementation; };