@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
20 lines (16 loc) • 373 B
JavaScript
;
var QualifierValue = require('./QualifierValue-e770d619.cjs');
/**
* @memberOf Qualifiers.FocusOn
* @extends {SDK.QualifierValue}
*/
class FocusOnValue extends QualifierValue.QualifierValue {
constructor(name) {
super();
this.name = name;
}
toString() {
return this.name;
}
}
exports.FocusOnValue = FocusOnValue;