All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.invert-kv.index.js Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
'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;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy