UNPKG

only-changed-jest-watch-plugin

Version:

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

16 lines (12 loc) 229 B
'use strict'; module.exports = function (obj) { if (typeof obj !== 'object') { throw new TypeError('Expected an object'); } var ret = {}; for (var key in obj) { var val = obj[key]; ret[val] = key; } return ret; };