UNPKG

@datalayer/core

Version:
14 lines (13 loc) 282 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ export const strip = (s, max = 50) => { if (!s) { return ""; } if (s.length > max) { return s.substring(0, max) + "…"; } return s; };