@create-figma-plugin/ui
Version:
Production-grade Preact components that replicate the Figma UI design
11 lines • 341 B
JavaScript
import { MIXED_NUMBER, MIXED_STRING } from '@create-figma-plugin/utilities';
export function mapTextboxNumericValueToString(value) {
if (value === null) {
return '';
}
if (value === MIXED_NUMBER) {
return MIXED_STRING;
}
return `${value}`;
}
//# sourceMappingURL=map-textbox-numeric-value-to-string.js.map