Your IP : 3.135.209.20


Current Path : /opt/alt/alt-nodejs8/root/usr/lib/node_modules/npm/node_modules/invert-kv/
Upload File :
Current File : //opt/alt/alt-nodejs8/root/usr/lib/node_modules/npm/node_modules/invert-kv/index.js

'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;
};

?>