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) =========================

16 lines (15 loc) 338 B
import { RANGE_VALUE_RE } from "../consts.js"; /** * * @param value */ export function normRangeValues(value) { const offset = String(value).match(RANGE_VALUE_RE); if (offset) { const modifier = offset[5] ? 'p' : ''; return `${offset[1] || offset[4]}${modifier}`; } else { return value; } }