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

package.amd.invert.js Maven / Gradle / Ivy

The newest version!
define(['./keys'], function (keys) {

  // Invert the keys and values of an object. The values must be serializable.
  function invert(obj) {
    var result = {};
    var _keys = keys(obj);
    for (var i = 0, length = _keys.length; i < length; i++) {
      result[obj[_keys[i]]] = _keys[i];
    }
    return result;
  }

  return invert;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy