UNPKG

@magnetarjs/utils

Version:

Magnetar utils like a logger for easier development

7 lines (6 loc) 162 B
/** * Converts `['a', '==', 123]` into `"a", "==", 123` */ export function arrStr(clause) { return clause.map((part) => JSON.stringify(part)).join(', '); }