UNPKG

@cloudinary/url-gen

Version:

Cloudinary URL-Gen SDK ========================= [![Build Status](https://api.travis-ci.com/cloudinary/js-url-gen.svg?branch=master)](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas

73 lines (70 loc) 1.29 kB
'use strict'; /** * @description Qualifiers for applying an ordered dither filter to the image. * @namespace StreamingProfile * @memberOf Qualifiers * @see Visit {@link Actions */ /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function fullHd() { return 'full_hd'; } /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function hd() { return 'hd'; } /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function sd() { return 'sd'; } /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function fullHdWifi() { return 'full_hd_wifi'; } /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function fullHdLean() { return 'full_hd_lean'; } /** * @summary qualifier * @memberOf Qualifiers.StreamingProfile * @return {string} */ function hdLean() { return 'hd_lean'; } const StreamingProfile = { hd, sd, hdLean, fullHd, fullHdLean, fullHdWifi }; exports.StreamingProfile = StreamingProfile; exports.fullHd = fullHd; exports.fullHdLean = fullHdLean; exports.fullHdWifi = fullHdWifi; exports.hd = hd; exports.hdLean = hdLean; exports.sd = sd;