Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dom_utils.js « utils « lib « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61ab2a698ced54790113eef2fb07dc768d0677e5 (plain)
1
2
3
export function pixeliseValue(val) {
  return val ? `${val}px` : '';
}