UNPKG

@cloudinary/url-gen

Version:

You are invited to influence our new SDK [Click here to view github discussion](https://github.com/cloudinary/js-url-gen/discussions/602) =========================

18 lines (14 loc) 331 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /** * Flip keys and values for given object * @param obj */ function objectFlip(obj) { var result = {}; Object.keys(obj).forEach(function (key) { result[obj[key]] = key; }); return result; } exports.objectFlip = objectFlip;