mirror of
https://github.com/maputnik/editor.git
synced 2026-01-13 00:40:02 +00:00
Recover commented out tests, Improve usage of helper in driver, Added data-wd-key for test to use instead of classes Moved all non tsx file to a single folder (lib) instead of lib and utils --------- Co-authored-by: Yuri Astrakhan <yuriastrakhan@gmail.com>
4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
export function formatLayerId (id: string | undefined) {
|
|
return id === "" ? "[empty_string]" : `'${id}'`;
|
|
}
|