mirror of
https://github.com/array-in-a-matrix/public-apis.git
synced 2025-04-02 11:11:50 -04:00
3 lines
133 B
JavaScript
3 lines
133 B
JavaScript
module.exports = function (entries) {
|
|
return `{\n"count": ${entries.length},\n"entries": ${JSON.stringify(entries, null, 4)}}`
|
|
}
|