UNPKG

@atlaskit/tokens

Version:

Design tokens are the single source of truth to name and store design decisions.

15 lines (14 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clampComponent = clampComponent; function clampComponent(value) { if (value < 0) { return 0; } if (value > 255) { return 255; } return value; }