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

14 lines (13 loc) 345 B
/** * @description * Returns a string representing the float value of the input, if the input was a number-like. * Examples: * - '1.0' -> '1.0' * - 1 -> '1.0' * - '5' -> '5.0' * - 'auto' -> 'auto' * @private * @param {string|number} value * @return {string} */ export declare function toFloatAsString(value: string | number): string;