UNPKG

@lucidcms/core

Version:

The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.

1 lines 652 B
{"version":3,"file":"license-key-display.mjs","names":[],"sources":["../../../src/utils/helpers/license-key-display.ts"],"sourcesContent":["export const createLicenseKeyDisplay = (key: string | null | undefined) => {\n\tconst trimmed = key?.trim();\n\tif (!trimmed) return null;\n\n\tconst visibleChars = 4;\n\tif (trimmed.length <= visibleChars) return trimmed;\n\n\tconst hidden = \"*\".repeat(trimmed.length - visibleChars);\n\treturn `${hidden}${trimmed.slice(-visibleChars)}`;\n};\n"],"mappings":"AAAA,MAAa,EAA2B,GAAmC,CAC1E,IAAM,EAAU,GAAK,KAAK,EAO1B,OANK,EAGD,EAAQ,QAAU,EAAqB,EAGpC,GADQ,IAAI,OAAO,EAAQ,OAAS,CAC5B,IAAI,EAAQ,MAAM,EAAa,IANzB,IAOtB"}